Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+17 -17
+2 -2
drivers/net/fddi/skfp/h/cmtdef.h
··· 477 477 /* 478 478 * function prototypes 479 479 */ 480 - #include "h/mbuf.h" /* Type definitions for MBUFs */ 481 - #include "h/smtstate.h" /* struct smt_state */ 480 + #include "mbuf.h" /* Type definitions for MBUFs */ 481 + #include "smtstate.h" /* struct smt_state */ 482 482 483 483 void hwt_restart(struct s_smc *smc); /* hwt.c */ 484 484 SMbuf *smt_build_frame(struct s_smc *smc, int class, int type,
+1 -1
drivers/net/fddi/skfp/h/hwmtm.h
··· 15 15 #ifndef _HWM_ 16 16 #define _HWM_ 17 17 18 - #include "h/mbuf.h" 18 + #include "mbuf.h" 19 19 20 20 /* 21 21 * MACRO for DMA synchronization:
+2 -2
drivers/net/fddi/skfp/h/sba.h
··· 19 19 #ifndef _SBA_ 20 20 #define _SBA_ 21 21 22 - #include "h/mbuf.h" 23 - #include "h/sba_def.h" 22 + #include "mbuf.h" 23 + #include "sba_def.h" 24 24 25 25 #ifdef SBA 26 26
+1 -1
drivers/net/fddi/skfp/h/skfbiinc.h
··· 15 15 #ifndef _SKFBIINC_ 16 16 #define _SKFBIINC_ 17 17 18 - #include "h/supern_2.h" 18 + #include "supern_2.h" 19 19 20 20 /* 21 21 * special defines for use into .asm files
+7 -7
drivers/net/fddi/skfp/h/smc.h
··· 38 38 * fddi.h 39 39 */ 40 40 #ifdef OSDEF 41 - #include "h/osdef1st.h" 41 + #include "osdef1st.h" 42 42 #endif /* OSDEF */ 43 43 #ifdef OEM_CONCEPT 44 44 #include "oemdef.h" 45 45 #endif /* OEM_CONCEPT */ 46 - #include "h/smt.h" 47 - #include "h/cmtdef.h" 48 - #include "h/fddimib.h" 49 - #include "h/targethw.h" /* all target hw dependencies */ 50 - #include "h/targetos.h" /* all target os dependencies */ 46 + #include "smt.h" 47 + #include "cmtdef.h" 48 + #include "fddimib.h" 49 + #include "targethw.h" /* all target hw dependencies */ 50 + #include "targetos.h" /* all target os dependencies */ 51 51 #ifdef ESS 52 - #include "h/sba.h" 52 + #include "sba.h" 53 53 #endif 54 54 55 55 /*
+3 -3
drivers/net/fddi/skfp/h/targethw.h
··· 25 25 #define SK_ML_ID_2 0x30 26 26 #endif 27 27 28 - #include "h/skfbi.h" 28 + #include "skfbi.h" 29 29 #ifndef TAG_MODE 30 - #include "h/fplus.h" 30 + #include "fplus.h" 31 31 #else 32 - #include "h/fplustm.h" 32 + #include "fplustm.h" 33 33 #endif 34 34 35 35 #ifndef HW_PTR
+1 -1
drivers/net/fddi/skfp/h/targetos.h
··· 58 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 59 #endif 60 60 61 - #include "h/hwmtm.h" 61 + #include "hwmtm.h" 62 62 63 63 #define TRUE 1 64 64 #define FALSE 0