diff options
author | Paul Mackerras <paulus@samba.org> | 2005-11-18 16:41:49 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-18 16:41:49 +1100 |
commit | f365cfd0d8b6d8fb3583d23d48f54efa88ee8563 (patch) | |
tree | 26b22435eb7dfa2bc8df082a837a244cd5248838 /drivers/video/offb.c | |
parent | 8a5abdf80ecf3ad3fa052878778c7185c5911a53 (diff) |
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>
Diffstat (limited to 'drivers/video/offb.c')
-rw-r--r-- | drivers/video/offb.c | 1 |
1 files changed, 1 insertions, 0 deletions
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> |