mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
drivers: dio: space required after that ','
This patch fixes the checkpatch.pl error: < ERROR: space required after that ',' (ctx:VxV) < #239: FILE: drivers/dio/dio.c:239: < + strcpy(dev->name,dio_getname(dev->id)); Signed-off-by: Aleksa Vučković <aleksav013@gmail.com> Link: https://lore.kernel.org/r/20220127135054.27281-5-aleksav013@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c3c6138589
commit
f8b187c254
@ -236,7 +236,7 @@ static int __init dio_init(void)
|
||||
dev->id = prid;
|
||||
|
||||
dev->ipl = DIO_IPL(va);
|
||||
strcpy(dev->name,dio_getname(dev->id));
|
||||
strcpy(dev->name, dio_getname(dev->id));
|
||||
printk(KERN_INFO "select code %3d: ipl %d: ID %02X", dev->scode, dev->ipl, prid);
|
||||
if (DIO_NEEDSSECID(prid))
|
||||
printk(":%02X", secid);
|
||||
|
Loading…
Reference in New Issue
Block a user