mirror of https://gitee.com/openkylin/linux.git
x86/platform/intel-mid: Convert comma to semicolon
Replace a comma between expression statements with a semicolon. Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com> Signed-off-by: Borislav Petkov <bp@suse.de> Acked-by: Andy Shevchenko <andy.shevchenko@gmail.com> Link: https://lkml.kernel.org/r/20201216131107.14339-1-zhengyongjun3@huawei.com
This commit is contained in:
parent
5c8fe583cc
commit
bdb154f074
|
@ -88,8 +88,8 @@ static int __init bt_sfi_init(void)
|
|||
memset(&info, 0, sizeof(info));
|
||||
info.fwnode = ddata->dev->fwnode;
|
||||
info.parent = ddata->dev;
|
||||
info.name = ddata->name,
|
||||
info.id = PLATFORM_DEVID_NONE,
|
||||
info.name = ddata->name;
|
||||
info.id = PLATFORM_DEVID_NONE;
|
||||
|
||||
pdev = platform_device_register_full(&info);
|
||||
if (IS_ERR(pdev))
|
||||
|
|
Loading…
Reference in New Issue