From: Masahiro Yamada Date: Sat, 28 Oct 2017 16:50:08 +0000 (+0900) Subject: reset: minimize the number of headers included from X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dfc1d9b24719b13164cc4fdc328c0b3e422cac42;p=linux.git reset: minimize the number of headers included from Commit 62e24c5775ec ("reset: add exported __reset_control_get, return NULL if optional") moved the dev->of_node reference to core.c, so does not need to know the members of struct device. Declaring device and device_node as structure is enough. is necessary for bool, true, and false. Signed-off-by: Masahiro Yamada Signed-off-by: Philipp Zabel --- diff --git a/include/linux/reset.h b/include/linux/reset.h index ed6fb02907977..e5d97ab4359cb 100644 --- a/include/linux/reset.h +++ b/include/linux/reset.h @@ -2,8 +2,10 @@ #ifndef _LINUX_RESET_H_ #define _LINUX_RESET_H_ -#include +#include +struct device; +struct device_node; struct reset_control; #ifdef CONFIG_RESET_CONTROLLER