summaryrefslogtreecommitdiffstats
path: root/drivers/zorro/zorro.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2013-05-17 14:01:24 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2013-11-26 11:09:06 +0100
commit52182c758f7c9bc34dbee0dfdce13d356de50f03 (patch)
tree0705033c84736cf10bbe2dedb496a41ebfb8c9a3 /drivers/zorro/zorro.h
parentbd79014cd47b3a0fa59a7a17489d8ada56ecab9b (diff)
downloadlinux-0-day-52182c758f7c9bc34dbee0dfdce13d356de50f03.tar.gz
linux-0-day-52182c758f7c9bc34dbee0dfdce13d356de50f03.tar.xz
zorro: Refactor conditional handling of Zorro device name database
Using an empty static inline function in the CONFIG_ZORRO_NAMES=n case allows to drop compilation of names.c. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'drivers/zorro/zorro.h')
-rw-r--r--drivers/zorro/zorro.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/zorro/zorro.h b/drivers/zorro/zorro.h
index b682d5ccd63f7..34119fb4e5601 100644
--- a/drivers/zorro/zorro.h
+++ b/drivers/zorro/zorro.h
@@ -1,4 +1,9 @@
+#ifdef CONFIG_ZORRO_NAMES
extern void zorro_name_device(struct zorro_dev *z);
+#else
+static inline void zorro_name_device(struct zorro_dev *dev) { }
+#endif
+
extern int zorro_create_sysfs_dev_files(struct zorro_dev *z);