Commit 1a78ebaa authored by Dan Carpenter's avatar Dan Carpenter Committed by yingbao jia
Browse files

platform/x86: ISST: use semi-colons instead of commas

mainline inclusion
from mainline-5.15
commit 55879dc4
category: bugfix
bugzilla: https://gitee.com/openeuler/intel-kernel/issues/I6FY06
CVE: NA
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=55879dc4d095232609fe81498c1b43f042708eef



Intel-SIG: commit 55879dc4 platform/x86: ISST: use semi-colons
instead of commas.
Backport SST missed patch for 5.10.

-------------------------------------------------
The code works the same either way, but it's better to use semi-colons
to separate statements.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/20210825072357.GA12957@kili


Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avataryingbao jia <yingbao.jia@intel.com>
parent 3b366d0f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;