Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1390921

[PATCH] staging: sm750fb: unsigned int instead of unsigned

From Manav Batra <batmanav10@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] staging: sm750fb: unsigned int instead of unsigned
Date 2016-04-29 11:30 +0200
Message-ID <rtcUh-3th-7@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


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(-)

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;
-- 
1.9.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] staging: sm750fb: unsigned int instead of unsigned Manav Batra <batmanav10@gmail.com> - 2016-04-29 11:30 +0200
  Re: [PATCH] staging: sm750fb: unsigned int instead of unsigned Dan Carpenter <dan.carpenter@oracle.com> - 2016-04-29 12:10 +0200

csiph-web