Hi Gabriel,
Hope the following trivial patch helps.
<quote sender="Gabriel C">
[...]
[...]
This patch fixes the following compile error:
drivers/scsi/advansys.c: In function 'advansys_board_found':
drivers/scsi/advansys.c:17781: error: implicit declaration of function
'to_pci_dev'
Signed-off-by: Eugene Teo <eugeneteo@kernel.sg>
---
drivers/scsi/advansys.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/scsi/advansys.c b/drivers/scsi/advansys.c
index 79c0b6e..908f02b 100644
--- a/drivers/scsi/advansys.c
+++ b/drivers/scsi/advansys.c
@@ -774,6 +774,7 @@
#include <linux/stat.h>
#include <linux/spinlock.h>
#include <linux/dma-mapping.h>
+#include <linux/pci.h>
#include <asm/io.h>
#include <asm/system.h>
-