diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-05 15:09:40 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-05 15:10:43 +0200 |
commit | ad272ffe7e9d815aca79def21e35e83fa479840a (patch) | |
tree | 37013ac2a7565a855be7cfb1f8c173f4060a2ff0 | |
parent | 55b8d754c65c0568b68f6ab7398d4378a96b5aa1 (diff) |
device: export device_broadcast_event
-rw-r--r-- | device.c | 2 | ||||
-rw-r--r-- | device.h | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -240,7 +240,7 @@ static void __init dev_init(void) avl_init(&aliases, avl_strcmp, false, NULL); } -static void device_broadcast_event(struct device *dev, enum device_event ev) +void device_broadcast_event(struct device *dev, enum device_event ev) { struct device_user *dep, *tmp; @@ -163,6 +163,7 @@ void device_cleanup(struct device *iface); struct device *device_get(const char *name, int create); void device_add_user(struct device_user *dep, struct device *iface); void device_remove_user(struct device_user *dep); +void device_broadcast_event(struct device *dev, enum device_event ev); void device_set_present(struct device *dev, bool state); void device_refresh_present(struct device *dev); |