diff options
author | Avinash Kumar <avi.kp.137@gmail.com> | 2013-09-30 09:36:44 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-30 22:15:28 -0700 |
commit | eea3b201970b4025baa04a83ff674b1b7e5d0802 (patch) | |
tree | 0177e84b741846782a0ee1789a3a49aeb3388288 /drivers/net/phy | |
parent | 36a8f39e05ccc308a5619a7edb5ad6e15ee82ff6 (diff) | |
download | op-kernel-dev-eea3b201970b4025baa04a83ff674b1b7e5d0802.zip op-kernel-dev-eea3b201970b4025baa04a83ff674b1b7e5d0802.tar.gz |
drivers: net: phy: marvell.c: removed checkpatch.pl warnings
removes following warnings-
drivers/net/phy/marvell.c:37: WARNING: Use #include <linux/io.h> instead of <asm/io.h>
drivers/net/phy/marvell.c:39: WARNING: Use #include <linux/uaccess.h> instead of <asm/uaccess.h>
Signed-off-by: Avinash Kumar <avi.kp.137@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/marvell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 2e91477..2e3c778e 100644 --- a/drivers/net/phy/marvell.c +++ b/drivers/net/phy/marvell.c @@ -34,9 +34,9 @@ #include <linux/marvell_phy.h> #include <linux/of.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/irq.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> #define MII_MARVELL_PHY_PAGE 22 |