You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Eliminate pointless casts from void* in a few driver irq handlers.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
@@ -3607,7 +3607,7 @@ static int ucc_geth_poll(struct napi_struct *napi, int budget)
|
||||
|
||||
static irqreturn_t ucc_geth_irq_handler(int irq, void *info)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)info;
|
||||
struct net_device *dev = info;
|
||||
struct ucc_geth_private *ugeth = netdev_priv(dev);
|
||||
struct ucc_fast_private *uccf;
|
||||
struct ucc_geth_info *ug_info;
|
||||
|
||||
Reference in New Issue
Block a user