diff --git a/[refs] b/[refs] index b4d386465548..7a4e75bfa6c7 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 7dc35cdf69149a7f2b5216ada9bafe359746ac1c +refs/heads/master: 63c4f204ffc8219696bda88eb20c9873d007a2fc diff --git a/trunk/drivers/base/core.c b/trunk/drivers/base/core.c index f258a21ed78a..bfa4268289ea 100644 --- a/trunk/drivers/base/core.c +++ b/trunk/drivers/base/core.c @@ -209,7 +209,6 @@ void device_initialize(struct device *dev) kobject_init(&dev->kobj); INIT_LIST_HEAD(&dev->node); INIT_LIST_HEAD(&dev->children); - INIT_LIST_HEAD(&dev->driver_list); INIT_LIST_HEAD(&dev->dma_pools); init_MUTEX(&dev->sem); } diff --git a/trunk/include/linux/device.h b/trunk/include/linux/device.h index 13f65853e583..d2434934d091 100644 --- a/trunk/include/linux/device.h +++ b/trunk/include/linux/device.h @@ -263,7 +263,6 @@ extern void class_device_destroy(struct class *cls, dev_t devt); struct device { struct list_head node; /* node in sibling list */ - struct list_head driver_list; struct list_head children; struct klist_node knode_driver; struct klist_node knode_bus;