diff options
author | Claudiu Manoil <claudiu.manoil@freescale.com> | 2013-08-01 11:07:05 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-02 00:16:23 +0400 |
commit | 84915c646271abc6b87fed0477dc72278fe4f8a3 (patch) | |
tree | d36aa646dc6b1b20c8e0efda1a4ef6b2e53b794a /drivers/net/ethernet/freescale/gianfar.h | |
parent | 376c7311bdb6efea3322310333576a04d73fbe4c (diff) | |
download | linux-84915c646271abc6b87fed0477dc72278fe4f8a3.tar.xz |
gianfar: Remove unused field grp_id from gfar_priv_grp
grp->grp_id is obsolete. It has no use in the current driver.
Remove it from gfar_priv_grp and put the 'rstat' member
in its place, in the 2nd cache line, as rstat needs fast access.
Signed-off-by: Claudiu Manoil <claudiu.manoil@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/freescale/gianfar.h')
-rw-r--r-- | drivers/net/ethernet/freescale/gianfar.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/ethernet/freescale/gianfar.h b/drivers/net/ethernet/freescale/gianfar.h index 04b552cd419d..ee19f2c138a6 100644 --- a/drivers/net/ethernet/freescale/gianfar.h +++ b/drivers/net/ethernet/freescale/gianfar.h @@ -1009,7 +1009,6 @@ struct gfar_irqinfo { * @napi: the napi poll function * @priv: back pointer to the priv structure * @regs: the ioremapped register space for this group - * @grp_id: group id for this group * @irqinfo: TX/RX/ER irq data for this group */ @@ -1018,11 +1017,10 @@ struct gfar_priv_grp { struct napi_struct napi; struct gfar_private *priv; struct gfar __iomem *regs; - unsigned int grp_id; + unsigned int rstat; unsigned long num_rx_queues; unsigned long rx_bit_map; /* cacheline 3 */ - unsigned int rstat; unsigned int tstat; unsigned long num_tx_queues; unsigned long tx_bit_map; |