diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-12-16 12:24:56 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 10:44:32 -0800 |
commit | 11c3b5c3e08f4d855cbef52883c266b9ab9df879 (patch) | |
tree | 43278db9cb198f3800eaa73c3c051d875c92709d /include | |
parent | 2831fe6f9cc4e16c103504ee09a47a084297c0f3 (diff) | |
download | kernel-crypto-11c3b5c3e08f4d855cbef52883c266b9ab9df879.tar.gz kernel-crypto-11c3b5c3e08f4d855cbef52883c266b9ab9df879.tar.xz kernel-crypto-11c3b5c3e08f4d855cbef52883c266b9ab9df879.zip |
driver core: move klist_children into private structure
Nothing outside of the driver core should ever touch klist_children, or
knode_parent, so move them out of the public eye.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/device.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index d6d34084fd3..60423e68720 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -366,8 +366,6 @@ struct device_dma_parameters { }; struct device { - struct klist klist_children; - struct klist_node knode_parent; /* node in sibling list */ struct klist_node knode_driver; struct klist_node knode_bus; struct device *parent; |