From: Li Zefan Date: Fri, 4 Jan 2008 09:59:20 +0000 (-0800) Subject: [CONNECTOR]: Cleanup struct cn_queue_dev X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=96a899655e2c3ba53f083eda69706ee4eb05271f;p=linux-beck.git [CONNECTOR]: Cleanup struct cn_queue_dev Struct member netlink_groups is never used, and I don't see how it can be useful. Signed-off-by: Li Zefan Signed-off-by: David S. Miller --- diff --git a/drivers/connector/cn_queue.c b/drivers/connector/cn_queue.c index 12ceed54ab18..dbda08c7b3db 100644 --- a/drivers/connector/cn_queue.c +++ b/drivers/connector/cn_queue.c @@ -146,7 +146,6 @@ struct cn_queue_dev *cn_queue_alloc_dev(char *name, struct sock *nls) spin_lock_init(&dev->queue_lock); dev->nls = nls; - dev->netlink_groups = 0; dev->cn_queue = create_workqueue(dev->name); if (!dev->cn_queue) { diff --git a/include/linux/connector.h b/include/linux/connector.h index 13fc4541bf23..7e18311d655e 100644 --- a/include/linux/connector.h +++ b/include/linux/connector.h @@ -112,7 +112,6 @@ struct cn_queue_dev { struct list_head queue_list; spinlock_t queue_lock; - int netlink_groups; struct sock *nls; };