[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <547f8b.93e.18b26e5e031.Coremail.chenguohua@jari.cn>
Date: Fri, 13 Oct 2023 10:38:01 +0800 (GMT+08:00)
From: chenguohua@...i.cn
To: rafael@...nel.org, lenb@...nel.org
Cc: linux-acpi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] ACPI: Clean up errors in acpi.h
Fix the following errors reported by checkpatch:
ERROR: "foo * bar" should be "foo *bar"
ERROR: space required after that ';' (ctx:VxV)
Signed-off-by: GuoHua Cheng <chenguohua@...i.cn>
---
include/linux/acpi.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/acpi.h b/include/linux/acpi.h
index 9bcf5641a7cf..b55a8ac627e9 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -1421,7 +1421,7 @@ acpi_graph_get_remote_endpoint(const struct fwnode_handle *fwnode,
}
#define ACPI_DECLARE_PROBE_ENTRY(table, name, table_id, subtable, valid, data, fn) \
- static const void * __acpi_table_##name[] \
+ static const void *__acpi_table_##name[] \
__attribute__((unused)) \
= { (void *) table_id, \
(void *) subtable, \
@@ -1429,7 +1429,7 @@ acpi_graph_get_remote_endpoint(const struct fwnode_handle *fwnode,
(void *) fn, \
(void *) data }
-#define acpi_probe_device_table(t) ({ int __r = 0; __r;})
+#define acpi_probe_device_table(t) ({ int __r = 0; __r; })
#endif
#ifdef CONFIG_ACPI_TABLE_UPGRADE
--
2.17.1
Powered by blists - more mailing lists