diff mbox

staging: sm750fb: unsigned int instead of unsigned

Message ID 20160429092143.GA6303@iiitd.ac.in (mailing list archive)
State New, archived
Headers show

Commit Message

Manav Batra April 29, 2016, 9:21 a.m. UTC
Signed-off-by: Manav Batra <batmanav10@gmail.com>

Replaced occurences of unsigned with unsigned int.
---
 drivers/staging/sm750fb/sm750.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Comments

Dan Carpenter April 29, 2016, 10:02 a.m. UTC | #1
On Fri, Apr 29, 2016 at 02:21:43AM -0700, Manav Batra wrote:
> Signed-off-by: Manav Batra <batmanav10@gmail.com>
> 
> Replaced occurences of unsigned with unsigned int.

The Signed-off-by goes at the end.  Look at some other patches and copy
the format.  Please resend everything.

regards,
dan carpenter

--
To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
index 6ed004e..0665b5c 100644
--- a/drivers/staging/sm750fb/sm750.c
+++ b/drivers/staging/sm750fb/sm750.c
@@ -575,11 +575,11 @@  static int lynxfb_ops_check_var(struct fb_var_screeninfo *var,
 	return hw_sm750_crtc_checkMode(crtc, var);
 }
 
-static int lynxfb_ops_setcolreg(unsigned regno,
-				unsigned red,
-				unsigned green,
-				unsigned blue,
-				unsigned transp,
+static int lynxfb_ops_setcolreg(unsigned int regno,
+				unsigned int red,
+				unsigned int green,
+				unsigned int blue,
+				unsigned int transp,
 				struct fb_info *info)
 {
 	struct lynxfb_par *par;