Skip to content

Commit

Permalink
usb: musb: fix include path
Browse files Browse the repository at this point in the history
headers were moved, fixing.

Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Felipe Balbi authored and Greg Kroah-Hartman committed Sep 23, 2008
1 parent 49cd248 commit 0590d58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions drivers/usb/musb/musb_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@
#include <linux/io.h>

#ifdef CONFIG_ARM
#include <asm/arch/hardware.h>
#include <asm/arch/memory.h>
#include <mach/hardware.h>
#include <mach/memory.h>
#include <asm/mach-types.h>
#endif

Expand Down
4 changes: 2 additions & 2 deletions drivers/usb/musb/omap2430.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#include <linux/io.h>

#include <asm/mach-types.h>
#include <asm/arch/hardware.h>
#include <asm/arch/mux.h>
#include <mach/hardware.h>
#include <mach/mux.h>

#include "musb_core.h"
#include "omap2430.h"
Expand Down
4 changes: 2 additions & 2 deletions drivers/usb/musb/omap2430.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#define __MUSB_OMAP243X_H__

#if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3430)
#include <asm/arch/hardware.h>
#include <asm/arch/usb.h>
#include <mach/hardware.h>
#include <mach/usb.h>

/*
* OMAP2430-specific definitions
Expand Down

0 comments on commit 0590d58

Please sign in to comment.