cifsd: spaces preferred around that '/'
authorNamjae Jeon <namjae.jeon@samsung.com>
Wed, 26 May 2021 07:42:12 +0000 (16:42 +0900)
committerNamjae Jeon <namjae.jeon@samsung.com>
Wed, 26 May 2021 09:13:30 +0000 (18:13 +0900)
Fix "CHECK: paces preferred around that '/' from checkpatch.pl --strict.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifsd/asn1.c

index 479a9c1..846f4e7 100644 (file)
@@ -65,7 +65,7 @@ static bool asn1_oid_decode(const unsigned char *value, size_t vlen,
        unsigned long subid;
 
        vlen += 1;
-       if (vlen < 2 || vlen > UINT_MAX/sizeof(unsigned long))
+       if (vlen < 2 || vlen > UINT_MAX / sizeof(unsigned long))
                return false;
 
        *oid = kmalloc(vlen * sizeof(unsigned long), GFP_KERNEL);