diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-09 20:33:03 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-16 10:11:16 +0100 |
commit | 4c002c978b7f2f2306d53de051c054504af920a9 (patch) | |
tree | 31c4083b3ad88e33f18437f1b8acc35e1bc7e47d /init | |
parent | a8ae608529ab1b71a3830895f98a107be90fed48 (diff) | |
download | linux-4c002c978b7f2f2306d53de051c054504af920a9.tar.gz linux-4c002c978b7f2f2306d53de051c054504af920a9.tar.bz2 linux-4c002c978b7f2f2306d53de051c054504af920a9.zip |
device.h: move 'struct driver' stuff out to device/driver.h
device.h has everything and the kitchen sink when it comes to struct
device things, so split out the struct driver things things to a
separate .h file to make things easier to maintain and manage over time.
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: Saravana Kannan <saravanak@google.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20191209193303.1694546-7-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index ec3a1463ac69..22840d3048b3 100644 --- a/init/main.c +++ b/init/main.c @@ -63,7 +63,7 @@ #include <linux/lockdep.h> #include <linux/kmemleak.h> #include <linux/pid_namespace.h> -#include <linux/device.h> +#include <linux/device/driver.h> #include <linux/kthread.h> #include <linux/sched.h> #include <linux/sched/init.h> |