Commit aab3ac26 authored by Jeff Kirsher's avatar Jeff Kirsher

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: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 33f810b2
...@@ -477,8 +477,8 @@ struct s_plc { ...@@ -477,8 +477,8 @@ struct s_plc {
/* /*
* function prototypes * function prototypes
*/ */
#include "h/mbuf.h" /* Type definitions for MBUFs */ #include "mbuf.h" /* Type definitions for MBUFs */
#include "h/smtstate.h" /* struct smt_state */ #include "smtstate.h" /* struct smt_state */
void hwt_restart(struct s_smc *smc); /* hwt.c */ void hwt_restart(struct s_smc *smc); /* hwt.c */
SMbuf *smt_build_frame(struct s_smc *smc, int class, int type, SMbuf *smt_build_frame(struct s_smc *smc, int class, int type,
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#ifndef _HWM_ #ifndef _HWM_
#define _HWM_ #define _HWM_
#include "h/mbuf.h" #include "mbuf.h"
/* /*
* MACRO for DMA synchronization: * MACRO for DMA synchronization:
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#ifndef _SBA_ #ifndef _SBA_
#define _SBA_ #define _SBA_
#include "h/mbuf.h" #include "mbuf.h"
#include "h/sba_def.h" #include "sba_def.h"
#ifdef SBA #ifdef SBA
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#ifndef _SKFBIINC_ #ifndef _SKFBIINC_
#define _SKFBIINC_ #define _SKFBIINC_
#include "h/supern_2.h" #include "supern_2.h"
/* /*
* special defines for use into .asm files * special defines for use into .asm files
......
...@@ -38,18 +38,18 @@ ...@@ -38,18 +38,18 @@
* fddi.h * fddi.h
*/ */
#ifdef OSDEF #ifdef OSDEF
#include "h/osdef1st.h" #include "osdef1st.h"
#endif /* OSDEF */ #endif /* OSDEF */
#ifdef OEM_CONCEPT #ifdef OEM_CONCEPT
#include "oemdef.h" #include "oemdef.h"
#endif /* OEM_CONCEPT */ #endif /* OEM_CONCEPT */
#include "h/smt.h" #include "smt.h"
#include "h/cmtdef.h" #include "cmtdef.h"
#include "h/fddimib.h" #include "fddimib.h"
#include "h/targethw.h" /* all target hw dependencies */ #include "targethw.h" /* all target hw dependencies */
#include "h/targetos.h" /* all target os dependencies */ #include "targetos.h" /* all target os dependencies */
#ifdef ESS #ifdef ESS
#include "h/sba.h" #include "sba.h"
#endif #endif
/* /*
......
...@@ -25,11 +25,11 @@ ...@@ -25,11 +25,11 @@
#define SK_ML_ID_2 0x30 #define SK_ML_ID_2 0x30
#endif #endif
#include "h/skfbi.h" #include "skfbi.h"
#ifndef TAG_MODE #ifndef TAG_MODE
#include "h/fplus.h" #include "fplus.h"
#else #else
#include "h/fplustm.h" #include "fplustm.h"
#endif #endif
#ifndef HW_PTR #ifndef HW_PTR
......
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
#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)))) #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))))
#endif #endif
#include "h/hwmtm.h" #include "hwmtm.h"
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment