diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2009-09-02 05:10:07 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-09-18 04:39:37 -0400 |
commit | e04ab958727a4b314df3e40036d72d9348835d0c (patch) | |
tree | 018f72a28458e891eced5c4bca082941394099f8 /drivers/watchdog | |
parent | d1833c21256e7b0ac3997493d31f0f3926f6d592 (diff) |
[WATCHDOG] sizeof cleanup
Use sizeof(*) instead of sizeof * (See Codingstyle documentation).
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/iop_wdt.c | 2 | ||||
-rw-r--r-- | drivers/watchdog/rm9k_wdt.c | 2 | ||||
-rw-r--r-- | drivers/watchdog/sc1200wdt.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/iop_wdt.c b/drivers/watchdog/iop_wdt.c index 0c9059676690..aef94789019f 100644 --- a/drivers/watchdog/iop_wdt.c +++ b/drivers/watchdog/iop_wdt.c | |||
@@ -139,7 +139,7 @@ static long iop_wdt_ioctl(struct file *file, | |||
139 | 139 | ||
140 | switch (cmd) { | 140 | switch (cmd) { |
141 | case WDIOC_GETSUPPORT: | 141 | case WDIOC_GETSUPPORT: |
142 | if (copy_to_user(argp, &ident, sizeof ident)) | 142 | if (copy_to_user(argp, &ident, sizeof(ident))) |
143 | ret = -EFAULT; | 143 | ret = -EFAULT; |
144 | else | 144 | else |
145 | ret = 0; | 145 | ret = 0; |
diff --git a/drivers/watchdog/rm9k_wdt.c b/drivers/watchdog/rm9k_wdt.c index 2e4442642262..bb66958b9433 100644 --- a/drivers/watchdog/rm9k_wdt.c +++ b/drivers/watchdog/rm9k_wdt.c | |||
@@ -340,7 +340,7 @@ static const struct resource *wdt_gpi_get_resource(struct platform_device *pdv, | |||
340 | const char *name, unsigned int type) | 340 | const char *name, unsigned int type) |
341 | { | 341 | { |
342 | char buf[80]; | 342 | char buf[80]; |
343 | if (snprintf(buf, sizeof buf, "%s_0", name) >= sizeof buf) | 343 | if (snprintf(buf, sizeof(buf), "%s_0", name) >= sizeof(buf)) |
344 | return NULL; | 344 | return NULL; |
345 | return platform_get_resource_byname(pdv, type, buf); | 345 | return platform_get_resource_byname(pdv, type, buf); |
346 | } | 346 | } |
diff --git a/drivers/watchdog/sc1200wdt.c b/drivers/watchdog/sc1200wdt.c index b5e19c1820a2..c01daca8405a 100644 --- a/drivers/watchdog/sc1200wdt.c +++ b/drivers/watchdog/sc1200wdt.c | |||
@@ -197,7 +197,7 @@ static long sc1200wdt_ioctl(struct file *file, unsigned int cmd, | |||
197 | 197 | ||
198 | switch (cmd) { | 198 | switch (cmd) { |
199 | case WDIOC_GETSUPPORT: | 199 | case WDIOC_GETSUPPORT: |
200 | if (copy_to_user(argp, &ident, sizeof ident)) | 200 | if (copy_to_user(argp, &ident, sizeof(ident))) |
201 | return -EFAULT; | 201 | return -EFAULT; |
202 | return 0; | 202 | return 0; |
203 | 203 | ||