msm: sdio: Fix wrong quoting in #include of local files
Includes of local files should not use < and >, rather use double quotes.
This causes errors in building kernel on some toolchains.
Change-Id: I0f09e00ffbc3de95d33e9c743ba0e7461ed41ab2
Signed-off-by: Alhad Purnapatre <alhadp@codeaurora.org>
diff --git a/arch/arm/mach-msm/sdio_al.c b/arch/arm/mach-msm/sdio_al.c
index ace437b..8fff2461 100644
--- a/arch/arm/mach-msm/sdio_al.c
+++ b/arch/arm/mach-msm/sdio_al.c
@@ -15,7 +15,7 @@
*
* To be used with Qualcomm's SDIO-Client connected to this host.
*/
-#include <sdio_al_private.h>
+#include "sdio_al_private.h"
#include <linux/module.h>
#include <linux/scatterlist.h>