diff options
author | Dave Airlie <airlied@redhat.com> | 2014-07-09 11:15:09 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-07-09 11:15:09 +1000 |
commit | 75bc08ab276f3e6f436847328631a07f30f973c4 (patch) | |
tree | 4e5d62daf8cdf5e4300393ee5f77249cb97fdbd5 /drivers/gpu/drm/drm_dp_mst_topology.c | |
parent | 1f834c32b758f0a30ae2d7a89f7bae54000faf2e (diff) | |
download | talos-obmc-linux-75bc08ab276f3e6f436847328631a07f30f973c4.tar.gz talos-obmc-linux-75bc08ab276f3e6f436847328631a07f30f973c4.zip |
drm/mst: fix build with debugfs off.
seq_file.h was being pulled in via drm_mm.h in that case.
Reported-by: Matthew Thode (on irc)
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_dp_mst_topology.c')
-rw-r--r-- | drivers/gpu/drm/drm_dp_mst_topology.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c index 73bc773513f2..369d6c49145b 100644 --- a/drivers/gpu/drm/drm_dp_mst_topology.c +++ b/drivers/gpu/drm/drm_dp_mst_topology.c @@ -25,6 +25,7 @@ #include <linux/init.h> #include <linux/errno.h> #include <linux/sched.h> +#include <linux/seq_file.h> #include <linux/i2c.h> #include <drm/drm_dp_mst_helper.h> #include <drm/drmP.h> |