Originally sent to LKML, but you should have received this too. ------------- Remove unused to_dev, to_handler, to_handle from include/linux/input.h Move to_handle_h from include/linux/input.h to drivers/char/keyboard.c Remove unused to_dev from drivers/base/driver.c Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> drivers/base/driver.c | 3 --- drivers/char/keyboard.c | 2 ++ include/linux/input.h | 5 ----- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/base/driver.c b/drivers/base/driver.c index 9a6537f..2611ae8 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c @@ -16,9 +16,6 @@ #include <linux/string.h> #include "base.h" -#define to_dev(node) container_of(node, struct device, driver_list) - - static struct device *next_device(struct klist_iter *i) { struct klist_node *n = klist_next(i); diff --git a/drivers/char/keyboard.c b/drivers/char/keyboard.c index 9769bf8..0ad7397 100644 --- a/drivers/char/keyboard.c +++ b/drivers/char/keyboard.c @@ -45,6 +45,8 @@ extern void ctrl_alt_del(void); +#define to_handle_h(n) container_of(n, struct input_handle, h_node) + /* * Exported functions/variables */ diff --git a/include/linux/input.h b/include/linux/input.h index cae2c35..4349ba6 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -1217,11 +1217,6 @@ struct input_handle { struct list_head h_node; }; -#define to_dev(n) container_of(n, struct input_dev, node) -#define to_handler(n) container_of(n, struct input_handler, node) -#define to_handle(n) container_of(n, struct input_handle, d_node) -#define to_handle_h(n) container_of(n, struct input_handle, h_node) - struct input_dev *input_allocate_device(void); void input_free_device(struct input_dev *dev); -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html