diff options
author | Khoronzhuk, Ivan <ivan.khoronzhuk@ti.com> | 2014-09-29 22:17:22 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-23 11:27:05 -0400 |
commit | 0935cac6855626f9de6af9583a30b6463e8bab95 (patch) | |
tree | 1dade35894311775f0d644fc3824bbfadc81a767 /drivers | |
parent | e3114c9a06e4c4a1fd93967288e28f6f0d61f49d (diff) | |
download | u-boot-imx-0935cac6855626f9de6af9583a30b6463e8bab95.zip u-boot-imx-0935cac6855626f9de6af9583a30b6463e8bab95.tar.gz u-boot-imx-0935cac6855626f9de6af9583a30b6463e8bab95.tar.bz2 |
net: keystone_net: move header file from arch to ti-common
The header file for the driver should be in correct place.
So move it to "arch/arm/include/asm/ti-common/keystone_net.h"
and correct driver's external dependencies. At the same time
align and correct some definitions.
Acked-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/keystone_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/keystone_net.c b/drivers/net/keystone_net.c index 4abde57..edd2bb0 100644 --- a/drivers/net/keystone_net.c +++ b/drivers/net/keystone_net.c @@ -12,9 +12,9 @@ #include <net.h> #include <miiphy.h> #include <malloc.h> -#include <asm/arch/emac_defs.h> #include <asm/arch/psc_defs.h> #include <asm/ti-common/keystone_nav.h> +#include <asm/ti-common/keystone_net.h> unsigned int emac_dbg; |