[..]keyboard.h: Remove inclusion of list.h

It's nowhere needed in .h or .c, whole module builds fine without it
This commit is contained in:
Richard Sailer 2019-06-04 20:10:59 +02:00
parent e116096c4e
commit eb89278121

View file

@ -24,8 +24,6 @@
#define DRIVER_NAME "tuxedo_keyboard"
#define pr_fmt(fmt) DRIVER_NAME ": " fmt
#include <linux/list.h>
#define __TUXEDO_PR(lvl, fmt, ...) do { pr_##lvl(fmt, ##__VA_ARGS__); } while (0)
#define TUXEDO_INFO(fmt, ...) __TUXEDO_PR(info, fmt, ##__VA_ARGS__)
#define TUXEDO_ERROR(fmt, ...) __TUXEDO_PR(err, fmt, ##__VA_ARGS__)