Use sizeof(*) instead of sizeof * (See Codingstyle documentation).
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
 
        switch (cmd) {
        case WDIOC_GETSUPPORT:
-               if (copy_to_user(argp, &ident, sizeof ident))
+               if (copy_to_user(argp, &ident, sizeof(ident)))
                        ret = -EFAULT;
                else
                        ret = 0;
 
                                        const char *name, unsigned int type)
 {
        char buf[80];
-       if (snprintf(buf, sizeof buf, "%s_0", name) >= sizeof buf)
+       if (snprintf(buf, sizeof(buf), "%s_0", name) >= sizeof(buf))
                return NULL;
        return platform_get_resource_byname(pdv, type, buf);
 }
 
 
        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;