linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jingoo Han <jg1.han@samsung.com>
To: 'Masanari Iida' <standby24x7@gmail.com>,
	'Tomi Valkeinen' <tomi.valkeinen@ti.com>
Cc: 'Jean-Christophe Plagniol-Villard' <plagnioj@jcrosoft.com>,
	linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org,
	'Jingoo Han' <jg1.han@samsung.com>
Subject: Re: [PATCH] fbdev: omap2: Fix format string mismatch in display-sysfs.c
Date: Mon, 28 Apr 2014 11:17:05 +0000	[thread overview]
Message-ID: <002401cf62d3$634cc1f0$29e645d0$%han@samsung.com> (raw)
In-Reply-To: <1398682455-21043-1-git-send-email-standby24x7@gmail.com>

On Monday, April 28, 2014 7:54 PM, Masanari Iida wrote:
> 
> Fix two format string mismatch in display-sysfs.c
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> ---
>  drivers/video/fbdev/omap2/dss/display-sysfs.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/video/fbdev/omap2/dss/display-sysfs.c b/drivers/video/fbdev/omap2/dss/display-
> sysfs.c
> index 5a2095a..5928bc9 100644
> --- a/drivers/video/fbdev/omap2/dss/display-sysfs.c
> +++ b/drivers/video/fbdev/omap2/dss/display-sysfs.c
> @@ -184,7 +184,7 @@ static ssize_t display_rotate_show(struct device *dev,
>  	if (!dssdev->driver->get_rotate)
>  		return -ENOENT;
>  	rotate = dssdev->driver->get_rotate(dssdev);

According to 'struct omap_dss_driver', get_rotate() returns 'u8'.
Then, how about changing the type of 'rotate' variable from 'int'
to 'u8' as below?

--- a/drivers/video/fbdev/omap2/dss/display-sysfs.c
+++ b/drivers/video/fbdev/omap2/dss/display-sysfs.c
@@ -180,7 +180,7 @@ static ssize_t display_rotate_show(struct device *dev,
                struct device_attribute *attr, char *buf)
 {
        struct omap_dss_device *dssdev = to_dss_device_sysfs(dev);
-       int rotate;
+       u8 rotate;
        if (!dssdev->driver->get_rotate)
                return -ENOENT;
        rotate = dssdev->driver->get_rotate(dssdev);


Best regards,
Jingoo Han

> -	return snprintf(buf, PAGE_SIZE, "%u\n", rotate);
> +	return snprintf(buf, PAGE_SIZE, "%d\n", rotate);
>  }
> 
>  static ssize_t display_rotate_store(struct device *dev,
> @@ -215,7 +215,7 @@ static ssize_t display_mirror_show(struct device *dev,
>  	if (!dssdev->driver->get_mirror)
>  		return -ENOENT;
>  	mirror = dssdev->driver->get_mirror(dssdev);
> -	return snprintf(buf, PAGE_SIZE, "%u\n", mirror);
> +	return snprintf(buf, PAGE_SIZE, "%d\n", mirror);
>  }
> 
>  static ssize_t display_mirror_store(struct device *dev,
> --
> 2.0.0.rc1


  reply	other threads:[~2014-04-28 11:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-28 10:54 [PATCH] fbdev: omap2: Fix format string mismatch in display-sysfs.c Masanari Iida
2014-04-28 11:17 ` Jingoo Han [this message]
2014-04-30  8:43   ` Tomi Valkeinen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='002401cf62d3$634cc1f0$29e645d0$%han@samsung.com' \
    --to=jg1.han@samsung.com \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=plagnioj@jcrosoft.com \
    --cc=standby24x7@gmail.com \
    --cc=tomi.valkeinen@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).