summaryrefslogtreecommitdiff
path: root/udev_dbus.h
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2004-03-24 21:11:13 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:35:11 -0700
commit7e371e86a420cb82948b72ca3dd93915cb8dd764 (patch)
treede5400ebe8f3aea666d7cdebb851940b8d911aac /udev_dbus.h
parentdd64e26b0c88892b367f57c4c7a7484e35641c7c (diff)
[PATCH] remove dbus code from core udev code as it's no longer needed to be there.
Diffstat (limited to 'udev_dbus.h')
-rw-r--r--udev_dbus.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/udev_dbus.h b/udev_dbus.h
deleted file mode 100644
index afa2046548..0000000000
--- a/udev_dbus.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef UDEV_DBUS_H
-#define UDEV_DBUS_H
-
-
-#ifdef USE_DBUS
-
-extern void sysbus_connect(void);
-extern void sysbus_disconnect(void);
-extern void sysbus_send_create(struct udevice *dev, const char *path);
-extern void sysbus_send_remove(const char* name, const char *path);
-
-#else
-
-static inline void sysbus_connect(void) { }
-static inline void sysbus_disconnect(void) { }
-static inline void sysbus_send_create(struct udevice *dev, const char *path) { }
-static inline void sysbus_send_remove(const char* name, const char *path) { }
-
-#endif /* USE_DBUS */
-
-
-
-#endif