From eb89278121aa740ff881a1fc6bc651342003edbe Mon Sep 17 00:00:00 2001 From: Richard Sailer Date: Tue, 4 Jun 2019 20:10:59 +0200 Subject: [PATCH] [..]keyboard.h: Remove inclusion of list.h It's nowhere needed in .h or .c, whole module builds fine without it --- src/tuxedo_keyboard.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tuxedo_keyboard.h b/src/tuxedo_keyboard.h index c64ea8b..9115541 100644 --- a/src/tuxedo_keyboard.h +++ b/src/tuxedo_keyboard.h @@ -24,8 +24,6 @@ #define DRIVER_NAME "tuxedo_keyboard" #define pr_fmt(fmt) DRIVER_NAME ": " fmt -#include - #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__)