diff options
author | Zheng Yongjun <zhengyongjun3@huawei.com> | 2020-12-14 16:31:14 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2021-01-28 04:44:17 +0300 |
commit | 94c08e067ab05085fe900530d5107263a7bbd87a (patch) | |
tree | 74a5264052d9ced27734f0bd234fd30c7fbcf317 /drivers/hwmon/pc87360.c | |
parent | 4008bc7d39537bb3be166d8a3129c4980e1dd7dc (diff) | |
download | linux-94c08e067ab05085fe900530d5107263a7bbd87a.tar.xz |
hwmon: (pc87360) convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201214133114.3516-1-zhengyongjun3@huawei.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/pc87360.c')
-rw-r--r-- | drivers/hwmon/pc87360.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 94f4b8b4a2ba..6a9ba23cd302 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c @@ -1700,8 +1700,8 @@ static int __init pc87360_device_add(unsigned short address) continue; res[res_count].start = extra_isa[i]; res[res_count].end = extra_isa[i] + PC87360_EXTENT - 1; - res[res_count].name = "pc87360", - res[res_count].flags = IORESOURCE_IO, + res[res_count].name = "pc87360"; + res[res_count].flags = IORESOURCE_IO; err = acpi_check_resource_conflict(&res[res_count]); if (err) |