diff options
| author | Masahiro Yamada <[email protected]> | 2015-04-21 20:38:18 +0900 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2015-05-07 05:19:29 +0200 |
| commit | cc25d85be3ffb5fc29279f17b8d68dc0e44dd19c (patch) | |
| tree | a2b0e6809091dd96f07cca5ff0d09e268e72c931 /board/altera | |
| parent | 905e8f9e53766e606bd4a0ed46d804889e613f32 (diff) | |
ARM: socfpga: do not add board directory to header search path
The compiler option "-Iboard/$(VENDOR)/$(BOARD)" just exists here
for iocsr_config.c to be able to include iocsr_config.h.
Use "..." instead of <...> to include a header in the same directory.
Signed-off-by: Masahiro Yamada <[email protected]>
Diffstat (limited to 'board/altera')
| -rw-r--r-- | board/altera/socfpga/iocsr_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/altera/socfpga/iocsr_config.c b/board/altera/socfpga/iocsr_config.c index c79aa6d566a..3b202b5b687 100644 --- a/board/altera/socfpga/iocsr_config.c +++ b/board/altera/socfpga/iocsr_config.c @@ -6,7 +6,7 @@ /* This file is generated by Preloader Generator */ -#include <iocsr_config.h> +#include "iocsr_config.h" #ifdef CONFIG_TARGET_SOCFPGA_CYCLONE5 const unsigned long iocsr_scan_chain0_table[(( |
