aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-08-24 04:34:35 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2011-08-27 03:58:23 -0400
commitaab3ac26108642eaa06efa4697dab595c7de2bbd (patch)
tree7d8bb44750e2854e89309a3bab6ecf95e356015a /drivers
parent33f810b2036f13f1b123062a9e5c1794d400ce81 (diff)
skfp: Fix SysKonnect FDDI driver compile issues
After moving the skfp driver, issues with the #include pathing to their locel headers was somehow exposed. Several headers had the incorrect path, so they were not able to be found during compile time. This patch fixes up the path issues to the local headers that need to be included. CC: "Maciej W. Rozycki" <macro@linux-mips.org> CC: Christoph Goos <cgoos@syskonnect.de> CC: <linux@syskonnect.de> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/fddi/skfp/h/cmtdef.h4
-rw-r--r--drivers/net/fddi/skfp/h/hwmtm.h2
-rw-r--r--drivers/net/fddi/skfp/h/sba.h4
-rw-r--r--drivers/net/fddi/skfp/h/skfbiinc.h2
-rw-r--r--drivers/net/fddi/skfp/h/smc.h14
-rw-r--r--drivers/net/fddi/skfp/h/targethw.h6
-rw-r--r--drivers/net/fddi/skfp/h/targetos.h2
7 files changed, 17 insertions, 17 deletions
diff --git a/drivers/net/fddi/skfp/h/cmtdef.h b/drivers/net/fddi/skfp/h/cmtdef.h
index 5a6c6122ccb0..f5bc90ff2a2a 100644
--- a/drivers/net/fddi/skfp/h/cmtdef.h
+++ b/drivers/net/fddi/skfp/h/cmtdef.h
@@ -477,8 +477,8 @@ struct s_plc {
477/* 477/*
478 * function prototypes 478 * function prototypes
479 */ 479 */
480#include "h/mbuf.h" /* Type definitions for MBUFs */ 480#include "mbuf.h" /* Type definitions for MBUFs */
481#include "h/smtstate.h" /* struct smt_state */ 481#include "smtstate.h" /* struct smt_state */
482 482
483void hwt_restart(struct s_smc *smc); /* hwt.c */ 483void hwt_restart(struct s_smc *smc); /* hwt.c */
484SMbuf *smt_build_frame(struct s_smc *smc, int class, int type, 484SMbuf *smt_build_frame(struct s_smc *smc, int class, int type,
diff --git a/drivers/net/fddi/skfp/h/hwmtm.h b/drivers/net/fddi/skfp/h/hwmtm.h
index e1a7e5f683dc..5924d4219e9e 100644
--- a/drivers/net/fddi/skfp/h/hwmtm.h
+++ b/drivers/net/fddi/skfp/h/hwmtm.h
@@ -15,7 +15,7 @@
15#ifndef _HWM_ 15#ifndef _HWM_
16#define _HWM_ 16#define _HWM_
17 17
18#include "h/mbuf.h" 18#include "mbuf.h"
19 19
20/* 20/*
21 * MACRO for DMA synchronization: 21 * MACRO for DMA synchronization:
diff --git a/drivers/net/fddi/skfp/h/sba.h b/drivers/net/fddi/skfp/h/sba.h
index 638cf0283bc4..35ddb44a1120 100644
--- a/drivers/net/fddi/skfp/h/sba.h
+++ b/drivers/net/fddi/skfp/h/sba.h
@@ -19,8 +19,8 @@
19#ifndef _SBA_ 19#ifndef _SBA_
20#define _SBA_ 20#define _SBA_
21 21
22#include "h/mbuf.h" 22#include "mbuf.h"
23#include "h/sba_def.h" 23#include "sba_def.h"
24 24
25#ifdef SBA 25#ifdef SBA
26 26
diff --git a/drivers/net/fddi/skfp/h/skfbiinc.h b/drivers/net/fddi/skfp/h/skfbiinc.h
index ac2d7192f1ca..ce72557c354c 100644
--- a/drivers/net/fddi/skfp/h/skfbiinc.h
+++ b/drivers/net/fddi/skfp/h/skfbiinc.h
@@ -15,7 +15,7 @@
15#ifndef _SKFBIINC_ 15#ifndef _SKFBIINC_
16#define _SKFBIINC_ 16#define _SKFBIINC_
17 17
18#include "h/supern_2.h" 18#include "supern_2.h"
19 19
20/* 20/*
21 * special defines for use into .asm files 21 * special defines for use into .asm files
diff --git a/drivers/net/fddi/skfp/h/smc.h b/drivers/net/fddi/skfp/h/smc.h
index c774a95902f5..3ca308b28214 100644
--- a/drivers/net/fddi/skfp/h/smc.h
+++ b/drivers/net/fddi/skfp/h/smc.h
@@ -38,18 +38,18 @@
38 * fddi.h 38 * fddi.h
39 */ 39 */
40#ifdef OSDEF 40#ifdef OSDEF
41#include "h/osdef1st.h" 41#include "osdef1st.h"
42#endif /* OSDEF */ 42#endif /* OSDEF */
43#ifdef OEM_CONCEPT 43#ifdef OEM_CONCEPT
44#include "oemdef.h" 44#include "oemdef.h"
45#endif /* OEM_CONCEPT */ 45#endif /* OEM_CONCEPT */
46#include "h/smt.h" 46#include "smt.h"
47#include "h/cmtdef.h" 47#include "cmtdef.h"
48#include "h/fddimib.h" 48#include "fddimib.h"
49#include "h/targethw.h" /* all target hw dependencies */ 49#include "targethw.h" /* all target hw dependencies */
50#include "h/targetos.h" /* all target os dependencies */ 50#include "targetos.h" /* all target os dependencies */
51#ifdef ESS 51#ifdef ESS
52#include "h/sba.h" 52#include "sba.h"
53#endif 53#endif
54 54
55/* 55/*
diff --git a/drivers/net/fddi/skfp/h/targethw.h b/drivers/net/fddi/skfp/h/targethw.h
index 626dc7263591..842a690446f3 100644
--- a/drivers/net/fddi/skfp/h/targethw.h
+++ b/drivers/net/fddi/skfp/h/targethw.h
@@ -25,11 +25,11 @@
25#define SK_ML_ID_2 0x30 25#define SK_ML_ID_2 0x30
26#endif 26#endif
27 27
28#include "h/skfbi.h" 28#include "skfbi.h"
29#ifndef TAG_MODE 29#ifndef TAG_MODE
30#include "h/fplus.h" 30#include "fplus.h"
31#else 31#else
32#include "h/fplustm.h" 32#include "fplustm.h"
33#endif 33#endif
34 34
35#ifndef HW_PTR 35#ifndef HW_PTR
diff --git a/drivers/net/fddi/skfp/h/targetos.h b/drivers/net/fddi/skfp/h/targetos.h
index 5d940e7b8ea0..53bacc107160 100644
--- a/drivers/net/fddi/skfp/h/targetos.h
+++ b/drivers/net/fddi/skfp/h/targetos.h
@@ -58,7 +58,7 @@
58#define ADDR(a) (((a)>>7) ? (outp(smc->hw.iop+B0_RAP,(a)>>7), (smc->hw.iop+( ((a)&0x7F) | ((a)>>7 ? 0x80:0)) )) : (smc->hw.iop+(((a)&0x7F)|((a)>>7 ? 0x80:0)))) 58#define ADDR(a) (((a)>>7) ? (outp(smc->hw.iop+B0_RAP,(a)>>7), (smc->hw.iop+( ((a)&0x7F) | ((a)>>7 ? 0x80:0)) )) : (smc->hw.iop+(((a)&0x7F)|((a)>>7 ? 0x80:0))))
59#endif 59#endif
60 60
61#include "h/hwmtm.h" 61#include "hwmtm.h"
62 62
63#define TRUE 1 63#define TRUE 1
64#define FALSE 0 64#define FALSE 0