aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nubus.h
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2013-04-10 15:05:38 +0100
committerAl Viro <viro@zeniv.linux.org.uk>2013-04-29 15:41:54 -0400
commit11db656ad462c9aa7aff7e3817214578cfc307b3 (patch)
tree02b536ede231d4f1f5c51030ff6a2691c1759921 /include/linux/nubus.h
parentfsl_udc: Don't use create_proc_read_entry() (diff)
downloadlinux-dev-11db656ad462c9aa7aff7e3817214578cfc307b3.tar.xz
linux-dev-11db656ad462c9aa7aff7e3817214578cfc307b3.zip
nubus: Don't use create_proc_read_entry()
Don't use create_proc_read_entry() as that is deprecated, but rather use proc_create_data() and seq_file instead. Signed-off-by: David Howells <dhowells@redhat.com> cc: linux-m68k@lists.linux-m68k.org Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/nubus.h')
-rw-r--r--include/linux/nubus.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/nubus.h b/include/linux/nubus.h
index a8696bbdfbc4..b3740527571a 100644
--- a/include/linux/nubus.h
+++ b/include/linux/nubus.h
@@ -80,7 +80,11 @@ extern struct nubus_board* nubus_boards;
/* Generic NuBus interface functions, modelled after the PCI interface */
void nubus_scan_bus(void);
+#ifdef CONFIG_PROC_FS
extern void nubus_proc_init(void);
+#else
+static inline void nubus_proc_init(void) {}
+#endif
int get_nubus_list(char *buf);
int nubus_proc_attach_device(struct nubus_dev *dev);
int nubus_proc_detach_device(struct nubus_dev *dev);