From: Paul Mackerras <paulus@samba.org> Date: Fri, 18 Nov 2005 05:41:49 +0000 (+1100) Subject: offb: Fix compile error on ppc32 systems X-Git-Tag: firefly_0821_release~39902^2~2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f365cfd0d8b6d8fb3583d23d48f54efa88ee8563;p=firefly-linux-kernel-4.4.55.git offb: Fix compile error on ppc32 systems The code Ben H added needs <linux/pci.h> for things like pci_dev, etc. Signed-off-by: Paul Mackerras <paulus@samba.org> --- diff --git a/drivers/video/offb.c b/drivers/video/offb.c index fe8ba364b3e8..00d87f5bb7be 100644 --- a/drivers/video/offb.c +++ b/drivers/video/offb.c @@ -26,6 +26,7 @@ #include <linux/fb.h> #include <linux/init.h> #include <linux/ioport.h> +#include <linux/pci.h> #include <asm/io.h> #include <asm/prom.h>