diff options
| author | Masahiro Yamada <[email protected]> | 2016-09-21 11:28:53 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-09-23 17:53:56 -0400 |
| commit | b5bf5cb3b3e81298247a53d5b514cf941cd13a9f (patch) | |
| tree | 4c1aca23057918df6d173cc2be713111f6daf836 /drivers | |
| parent | a4ca3799c2edf2b805f804a07d234a9e5eaae60f (diff) | |
treewide: use #include <...> to include public headers
We are supposed to use #include <...> to include headers in the
public include paths. We should use #include "..." only for headers
in local directories.
Signed-off-by: Masahiro Yamada <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/qe/qe.c | 8 | ||||
| -rw-r--r-- | drivers/qe/uccf.c | 10 | ||||
| -rw-r--r-- | drivers/qe/uec.c | 12 | ||||
| -rw-r--r-- | drivers/qe/uec_phy.c | 12 |
4 files changed, 21 insertions, 21 deletions
diff --git a/drivers/qe/qe.c b/drivers/qe/qe.c index 2b98984ef26..7e74212424a 100644 --- a/drivers/qe/qe.c +++ b/drivers/qe/qe.c @@ -7,11 +7,11 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "common.h" +#include <common.h> #include <command.h> -#include "asm/errno.h" -#include "asm/io.h" -#include "linux/immap_qe.h" +#include <asm/errno.h> +#include <asm/io.h> +#include <linux/immap_qe.h> #include <fsl_qe.h> #ifdef CONFIG_LS102XA #include <asm/arch/immap_ls102xa.h> diff --git a/drivers/qe/uccf.c b/drivers/qe/uccf.c index e0118865052..ae4ca350481 100644 --- a/drivers/qe/uccf.c +++ b/drivers/qe/uccf.c @@ -7,11 +7,11 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "common.h" -#include "malloc.h" -#include "asm/errno.h" -#include "asm/io.h" -#include "linux/immap_qe.h" +#include <common.h> +#include <malloc.h> +#include <asm/errno.h> +#include <asm/io.h> +#include <linux/immap_qe.h> #include "uccf.h" #include <fsl_qe.h> diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c index 468c92ebced..af975386732 100644 --- a/drivers/qe/uec.c +++ b/drivers/qe/uec.c @@ -6,12 +6,12 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "common.h" -#include "net.h" -#include "malloc.h" -#include "asm/errno.h" -#include "asm/io.h" -#include "linux/immap_qe.h" +#include <common.h> +#include <net.h> +#include <malloc.h> +#include <asm/errno.h> +#include <asm/io.h> +#include <linux/immap_qe.h> #include "uccf.h" #include "uec.h" #include "uec_phy.h" diff --git a/drivers/qe/uec_phy.c b/drivers/qe/uec_phy.c index 272874d3b05..be90d943f14 100644 --- a/drivers/qe/uec_phy.c +++ b/drivers/qe/uec_phy.c @@ -10,12 +10,12 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "common.h" -#include "net.h" -#include "malloc.h" -#include "asm/errno.h" -#include "linux/immap_qe.h" -#include "asm/io.h" +#include <common.h> +#include <net.h> +#include <malloc.h> +#include <asm/errno.h> +#include <linux/immap_qe.h> +#include <asm/io.h> #include "uccf.h" #include "uec.h" #include "uec_phy.h" |
