Skip to content

Commit 55879dc

Browse files
Dan Carpenterjwrdegoede
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/20210825072357.GA12957@kili Signed-off-by: Hans de Goede <[email protected]>
1 parent 828857f commit 55879dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/platform/x86/intel/speed_select_if/isst_if_common.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ static int isst_if_get_platform_info(void __user *argp)
265265
{
266266
struct isst_if_platform_info info;
267267

268-
info.api_version = ISST_IF_API_VERSION,
269-
info.driver_version = ISST_IF_DRIVER_VERSION,
270-
info.max_cmds_per_ioctl = ISST_IF_CMD_LIMIT,
268+
info.api_version = ISST_IF_API_VERSION;
269+
info.driver_version = ISST_IF_DRIVER_VERSION;
270+
info.max_cmds_per_ioctl = ISST_IF_CMD_LIMIT;
271271
info.mbox_supported = punit_callbacks[ISST_IF_DEV_MBOX].registered;
272272
info.mmio_supported = punit_callbacks[ISST_IF_DEV_MMIO].registered;
273273

0 commit comments

Comments
 (0)