Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f8b187c

Browse files
aleksav013gregkh
authored andcommitted
drivers: dio: space required after that ','
This patch fixes the checkpatch.pl error: < ERROR: space required after that ',' (ctx:VxV) < torvalds#239: FILE: drivers/dio/dio.c:239: < + strcpy(dev->name,dio_getname(dev->id)); Signed-off-by: Aleksa Vučković <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent c3c6138 commit f8b187c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dio/dio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ static int __init dio_init(void)
236236
dev->id = prid;
237237

238238
dev->ipl = DIO_IPL(va);
239-
strcpy(dev->name,dio_getname(dev->id));
239+
strcpy(dev->name, dio_getname(dev->id));
240240
printk(KERN_INFO "select code %3d: ipl %d: ID %02X", dev->scode, dev->ipl, prid);
241241
if (DIO_NEEDSSECID(prid))
242242
printk(":%02X", secid);

0 commit comments

Comments
 (0)