aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/sc1200wdt.c
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2009-09-02 09:10:07 +0000
committerWim Van Sebroeck <wim@iguana.be>2009-09-18 08:39:37 +0000
commite04ab958727a4b314df3e40036d72d9348835d0c (patch)
tree018f72a28458e891eced5c4bca082941394099f8 /drivers/watchdog/sc1200wdt.c
parent[WATCHDOG] wdt_pci: fix printk and variable type (diff)
downloadlinux-dev-e04ab958727a4b314df3e40036d72d9348835d0c.tar.xz
linux-dev-e04ab958727a4b314df3e40036d72d9348835d0c.zip
[WATCHDOG] sizeof cleanup
Use sizeof(*) instead of sizeof * (See Codingstyle documentation). Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to '')
-rw-r--r--drivers/watchdog/sc1200wdt.c2
1 files changed, 1 insertions, 1 deletions
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,
switch (cmd) {
case WDIOC_GETSUPPORT:
- if (copy_to_user(argp, &ident, sizeof ident))
+ if (copy_to_user(argp, &ident, sizeof(ident)))
return -EFAULT;
return 0;