Skip to content

Commit

Permalink
MAINTAINERS: Add entry for APM X-Gene SoC Ethernet (v2) driver
Browse files Browse the repository at this point in the history
This patch adds a MAINTAINERS entry for the ethernet driver for
the on-chip ethernet interface which uses a linked list of DMA
descriptor architecture (v2) for APM X-Gene SoCs.

Signed-off-by: Iyappan Subramanian <isubramanian@apm.com>
Signed-off-by: Keyur Chudgar <kchudgar@apm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Iyappan Subramanian authored and David S. Miller committed Mar 9, 2017
1 parent b105bcd commit 70dbd9b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,12 @@ F: drivers/net/phy/mdio-xgene.c
F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt
F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt

APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
M: Iyappan Subramanian <isubramanian@apm.com>
M: Keyur Chudgar <kchudgar@apm.com>
S: Supported
F: drivers/net/ethernet/apm/xgene-v2/

APPLIED MICRO (APM) X-GENE SOC PMU
M: Tai Nguyen <ttnguyen@apm.com>
S: Supported
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/apm/xgene-v2/mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ static void xge_mac_set_speed(struct xge_pdata *pdata)

void xge_mac_set_station_addr(struct xge_pdata *pdata)
{
u32 addr0, addr1;
u8 *dev_addr = pdata->ndev->dev_addr;
u32 addr0, addr1;

addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) |
(dev_addr[1] << 8) | dev_addr[0];
Expand Down
8 changes: 4 additions & 4 deletions drivers/net/ethernet/apm/xgene-v2/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ static int xge_get_resources(struct xge_pdata *pdata)
{
struct platform_device *pdev;
struct net_device *ndev;
struct device *dev;
struct resource *res;
int phy_mode, ret = 0;
struct resource *res;
struct device *dev;

pdev = pdata->pdev;
dev = &pdev->dev;
Expand Down Expand Up @@ -190,9 +190,9 @@ static netdev_tx_t xge_start_xmit(struct sk_buff *skb, struct net_device *ndev)
{
struct xge_pdata *pdata = netdev_priv(ndev);
struct device *dev = &pdata->pdev->dev;
static dma_addr_t dma_addr;
struct xge_desc_ring *tx_ring;
struct xge_raw_desc *raw_desc;
static dma_addr_t dma_addr;
u64 addr_lo, addr_hi;
void *pkt_buf;
u8 tail;
Expand Down Expand Up @@ -526,7 +526,7 @@ static int xge_close(struct net_device *ndev)
static int xge_napi(struct napi_struct *napi, const int budget)
{
struct net_device *ndev = napi->dev;
struct xge_pdata *pdata = netdev_priv(ndev);
struct xge_pdata *pdata;
int processed;

pdata = netdev_priv(ndev);
Expand Down

0 comments on commit 70dbd9b

Please sign in to comment.