summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRhyland Klein <rklein@nvidia.com>2012-07-10 07:59:49 -0700
committerSimone Willett <swillett@nvidia.com>2012-07-13 14:45:18 -0700
commitb8625c8bc25959e40352d8bf0c8664fa5d8eeecf (patch)
treef86dd4ef473358edb153b75c7f44e44f7cbe24ea
parentca7d8fa1906d2f2a2c311d337a14b328ed13c414 (diff)
ARM: tegra: change include to proper notation
In this case we want to include a file in the same directory. We should be using "" with include instead of <>. This fixes a an issue using the chromeos toolchain (4.6.3+) where fuse.h is not found while compiling usb_phy.c. Signed-off-by: Rhyland Klein <rklein@nvidia.com> Change-Id: I0c6bdf6768cd89740ed0444b2b46289057dfad6a Reviewed-on: http://git-master/r/114608 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Venkat Moganty <vmoganty@nvidia.com>
-rw-r--r--arch/arm/mach-tegra/usb_phy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/usb_phy.c b/arch/arm/mach-tegra/usb_phy.c
index f6e64f08c30a..a83f04a7656c 100644
--- a/arch/arm/mach-tegra/usb_phy.c
+++ b/arch/arm/mach-tegra/usb_phy.c
@@ -32,7 +32,7 @@
#include <linux/platform_data/tegra_usb.h>
#include "tegra_usb_phy.h"
#include <mach/iomap.h>
-#include <fuse.h>
+#include "fuse.h"
#define ERR(stuff...) pr_err("usb_phy: " stuff)
#define WARNING(stuff...) pr_warning("usb_phy: " stuff)