summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-03-28 19:08:26 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-03-28 19:08:26 +0200
commitba53781c4c4f7071e619a697ee922c2033e2fe98 (patch)
treed84ac82bb08ff2a9b5d0c16c76fa6721c6e7b275 /device.h
parentddbc9bb6e4769b9654a5ab12acf64c448c70e7bb (diff)
downloadnetifd-ba53781c4c4f7071e619a697ee922c2033e2fe98.tar.gz
remove some comments - will be better described in the design documentation
Diffstat (limited to 'device.h')
-rw-r--r--device.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/device.h b/device.h
index 9ceeff5..3919652 100644
--- a/device.h
+++ b/device.h
@@ -40,28 +40,15 @@ struct device {
/* events broadcasted to all users of a device */
enum device_event {
- /* device has been added to the system and can be brought up */
DEV_EVENT_ADD,
-
- /* device has been removed */
DEV_EVENT_REMOVE,
- /* device is being brought up */
DEV_EVENT_SETUP,
-
- /* device is being brought down */
DEV_EVENT_TEARDOWN,
-
- /* device has been brought up */
DEV_EVENT_UP,
-
- /* device has been brought down */
DEV_EVENT_DOWN,
- /* device has changed its link state to up */
DEV_EVENT_LINK_UP,
-
- /* device has changed its link state to down */
DEV_EVENT_LINK_DOWN,
};