diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-21 11:28:53 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-09-23 17:53:56 -0400 |
commit | b5bf5cb3b3e81298247a53d5b514cf941cd13a9f (patch) | |
tree | 4c1aca23057918df6d173cc2be713111f6daf836 /drivers/qe/uec_phy.c | |
parent | a4ca3799c2edf2b805f804a07d234a9e5eaae60f (diff) | |
download | u-boot-b5bf5cb3b3e81298247a53d5b514cf941cd13a9f.tar.gz |
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 <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/qe/uec_phy.c')
-rw-r--r-- | drivers/qe/uec_phy.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/qe/uec_phy.c b/drivers/qe/uec_phy.c index 272874d3b0..be90d943f1 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" |