diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-24 10:34:35 +0200 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-27 09:58:23 +0200 |
commit | aab3ac26108642eaa06efa4697dab595c7de2bbd (patch) | |
tree | 7d8bb44750e2854e89309a3bab6ecf95e356015a /drivers/net/fddi/skfp/h/smc.h | |
parent | fddi: Move the FDDI drivers (diff) | |
download | linux-aab3ac26108642eaa06efa4697dab595c7de2bbd.tar.xz linux-aab3ac26108642eaa06efa4697dab595c7de2bbd.zip |
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/net/fddi/skfp/h/smc.h')
-rw-r--r-- | drivers/net/fddi/skfp/h/smc.h | 14 |
1 files changed, 7 insertions, 7 deletions
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 @@ * fddi.h */ #ifdef OSDEF -#include "h/osdef1st.h" +#include "osdef1st.h" #endif /* OSDEF */ #ifdef OEM_CONCEPT #include "oemdef.h" #endif /* OEM_CONCEPT */ -#include "h/smt.h" -#include "h/cmtdef.h" -#include "h/fddimib.h" -#include "h/targethw.h" /* all target hw dependencies */ -#include "h/targetos.h" /* all target os dependencies */ +#include "smt.h" +#include "cmtdef.h" +#include "fddimib.h" +#include "targethw.h" /* all target hw dependencies */ +#include "targetos.h" /* all target os dependencies */ #ifdef ESS -#include "h/sba.h" +#include "sba.h" #endif /* |