Message ID | 1398774115-15353-1-git-send-email-standby24x7@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 29/04/14 15:21, Masanari Iida wrote: > Fix format string mismatch in contrast_show(). > > Signed-off-by: Masanari Iida <standby24x7@gmail.com> > --- > drivers/video/fbdev/wm8505fb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/video/fbdev/wm8505fb.c b/drivers/video/fbdev/wm8505fb.c > index 537d199..d2fafbb 100644 > --- a/drivers/video/fbdev/wm8505fb.c > +++ b/drivers/video/fbdev/wm8505fb.c > @@ -162,7 +162,7 @@ static ssize_t contrast_show(struct device *dev, > struct fb_info *info = dev_get_drvdata(dev); > struct wm8505fb_info *fbi = to_wm8505fb_info(info); > > - return sprintf(buf, "%d\n", fbi->contrast); > + return sprintf(buf, "%u\n", fbi->contrast); > } > > static ssize_t contrast_store(struct device *dev, > Thanks, queued this and the 2/2 patch for 3.16. Tomi
diff --git a/drivers/video/fbdev/wm8505fb.c b/drivers/video/fbdev/wm8505fb.c index 537d199..d2fafbb 100644 --- a/drivers/video/fbdev/wm8505fb.c +++ b/drivers/video/fbdev/wm8505fb.c @@ -162,7 +162,7 @@ static ssize_t contrast_show(struct device *dev, struct fb_info *info = dev_get_drvdata(dev); struct wm8505fb_info *fbi = to_wm8505fb_info(info); - return sprintf(buf, "%d\n", fbi->contrast); + return sprintf(buf, "%u\n", fbi->contrast); } static ssize_t contrast_store(struct device *dev,
Fix format string mismatch in contrast_show(). Signed-off-by: Masanari Iida <standby24x7@gmail.com> --- drivers/video/fbdev/wm8505fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)