staging: et131x: don't cast a void* to a struct pointer

Casting a void* popinter to a struct pointer is unnecessary, don't do
it.

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mark Einon 2014-09-23 20:41:12 +01:00 committed by Greg Kroah-Hartman
parent e112eb598d
commit ecce565056

View file

@ -3624,7 +3624,7 @@ static irqreturn_t et131x_isr(int irq, void *dev_id)
{
bool handled = true;
bool enable_interrupts = true;
struct net_device *netdev = (struct net_device *)dev_id;
struct net_device *netdev = dev_id;
struct et131x_adapter *adapter = netdev_priv(netdev);
struct address_map __iomem *iomem = adapter->regs;
struct rx_ring *rx_ring = &adapter->rx_ring;