diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-05 00:35:26 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-05 00:35:26 +0100 |
commit | 16559ae48c76f1ceb970b9719dea62b77eb5d06b (patch) | |
tree | 4ae548f78dedaf7d843d68f04effadc9a02fd040 /drivers/gpu/drm/gma500 | |
parent | serial_core: Fix type definition for PORT_BRCM_TRUMANAGE. (diff) | |
download | linux-16559ae48c76f1ceb970b9719dea62b77eb5d06b.tar.xz linux-16559ae48c76f1ceb970b9719dea62b77eb5d06b.zip |
kgdb: remove #include <linux/serial_8250.h> from kgdb.h
There's no reason kgdb.h itself needs to include the 8250 serial port
header file. So push it down to the _very_ limited number of individual
drivers that need the values in that file, and fix up the places where
people really wanted serial_core.h and platform_device.h.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/gpu/drm/gma500')
-rw-r--r-- | drivers/gpu/drm/gma500/cdv_intel_dp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/gma500/cdv_intel_dp.c b/drivers/gpu/drm/gma500/cdv_intel_dp.c index 51044cc55cf2..88d9ef6b5b4a 100644 --- a/drivers/gpu/drm/gma500/cdv_intel_dp.c +++ b/drivers/gpu/drm/gma500/cdv_intel_dp.c @@ -27,6 +27,7 @@ #include <linux/i2c.h> #include <linux/slab.h> +#include <linux/module.h> #include <drm/drmP.h> #include <drm/drm_crtc.h> #include <drm/drm_crtc_helper.h> |