All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers/hwmon/w83791d.c: rename prototype parameter from 'register' to 'reg'
@ 2011-09-15  6:30 Chris Peterson
  2011-09-21 11:41   ` [lm-sensors] [PATCH] drivers/hwmon/w83791d.c: rename prototype Marc Hulsman
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Chris Peterson @ 2011-09-15  6:30 UTC (permalink / raw)
  To: kernel-janitors

gcc -Wextra warns "‘register’ is not at beginning of declaration" because the
compiler thinks the parameter has been marked as a 'register' variable, but
the function prototype intended to name the parameter "register" (which is a
reserved keyword).

Signed-off-by: Chris Peterson <cpeterso@cpeterso.com>
---
 drivers/hwmon/w83791d.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/hwmon/w83791d.c b/drivers/hwmon/w83791d.c
index 17cf1ab..8c2844e 100644
--- a/drivers/hwmon/w83791d.c
+++ b/drivers/hwmon/w83791d.c
@@ -329,8 +329,8 @@ static int w83791d_detect(struct i2c_client *client,
 			  struct i2c_board_info *info);
 static int w83791d_remove(struct i2c_client *client);
 
-static int w83791d_read(struct i2c_client *client, u8 register);
-static int w83791d_write(struct i2c_client *client, u8 register, u8 value);
+static int w83791d_read(struct i2c_client *client, u8 reg);
+static int w83791d_write(struct i2c_client *client, u8 reg, u8 value);
 static struct w83791d_data *w83791d_update_device(struct device *dev);
 
 #ifdef DEBUG
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-09-27 15:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15  6:30 [PATCH] drivers/hwmon/w83791d.c: rename prototype parameter from 'register' to 'reg' Chris Peterson
2011-09-21 11:41 ` Marc Hulsman
2011-09-21 11:41   ` [lm-sensors] [PATCH] drivers/hwmon/w83791d.c: rename prototype Marc Hulsman
2011-09-21 13:55 ` Guenter Roeck
2011-09-21 13:55   ` Guenter Roeck
2011-09-27 15:05 ` Jean Delvare
2011-09-27 15:05   ` Jean Delvare

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.