mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
platform/x86: ISST: use semi-colons instead of commas
The code works the same either way, but it's better to use semi-colons to separate statements. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Link: https://lore.kernel.org/r/20210825072357.GA12957@kili Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
828857f670
commit
55879dc4d0
|
|
@ -265,9 +265,9 @@ static int isst_if_get_platform_info(void __user *argp)
|
|||
{
|
||||
struct isst_if_platform_info info;
|
||||
|
||||
info.api_version = ISST_IF_API_VERSION,
|
||||
info.driver_version = ISST_IF_DRIVER_VERSION,
|
||||
info.max_cmds_per_ioctl = ISST_IF_CMD_LIMIT,
|
||||
info.api_version = ISST_IF_API_VERSION;
|
||||
info.driver_version = ISST_IF_DRIVER_VERSION;
|
||||
info.max_cmds_per_ioctl = ISST_IF_CMD_LIMIT;
|
||||
info.mbox_supported = punit_callbacks[ISST_IF_DEV_MBOX].registered;
|
||||
info.mmio_supported = punit_callbacks[ISST_IF_DEV_MMIO].registered;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user