mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
ipw2x00: Fix -Wcast-function-type
[ Upstream commit ebd77feb27 ]
correct usage prototype of callback in tasklet_init().
Report by https://github.com/KSPP/linux/issues/20
Signed-off-by: Phong Tran <tranmanphong@gmail.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b213d7453a
commit
0bfca57ef2
@@ -3220,8 +3220,9 @@ static void ipw2100_tx_send_data(struct ipw2100_priv *priv)
|
||||
}
|
||||
}
|
||||
|
||||
static void ipw2100_irq_tasklet(struct ipw2100_priv *priv)
|
||||
static void ipw2100_irq_tasklet(unsigned long data)
|
||||
{
|
||||
struct ipw2100_priv *priv = (struct ipw2100_priv *)data;
|
||||
struct net_device *dev = priv->net_dev;
|
||||
unsigned long flags;
|
||||
u32 inta, tmp;
|
||||
@@ -6025,7 +6026,7 @@ static void ipw2100_rf_kill(struct work_struct *work)
|
||||
spin_unlock_irqrestore(&priv->low_lock, flags);
|
||||
}
|
||||
|
||||
static void ipw2100_irq_tasklet(struct ipw2100_priv *priv);
|
||||
static void ipw2100_irq_tasklet(unsigned long data);
|
||||
|
||||
static const struct net_device_ops ipw2100_netdev_ops = {
|
||||
.ndo_open = ipw2100_open,
|
||||
@@ -6155,7 +6156,7 @@ static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev,
|
||||
INIT_DELAYED_WORK(&priv->rf_kill, ipw2100_rf_kill);
|
||||
INIT_DELAYED_WORK(&priv->scan_event, ipw2100_scan_event);
|
||||
|
||||
tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
|
||||
tasklet_init(&priv->irq_tasklet,
|
||||
ipw2100_irq_tasklet, (unsigned long)priv);
|
||||
|
||||
/* NOTE: We do not start the deferred work for status checks yet */
|
||||
|
||||
@@ -1959,8 +1959,9 @@ static void notify_wx_assoc_event(struct ipw_priv *priv)
|
||||
wireless_send_event(priv->net_dev, SIOCGIWAP, &wrqu, NULL);
|
||||
}
|
||||
|
||||
static void ipw_irq_tasklet(struct ipw_priv *priv)
|
||||
static void ipw_irq_tasklet(unsigned long data)
|
||||
{
|
||||
struct ipw_priv *priv = (struct ipw_priv *)data;
|
||||
u32 inta, inta_mask, handled = 0;
|
||||
unsigned long flags;
|
||||
int rc = 0;
|
||||
@@ -10694,7 +10695,7 @@ static int ipw_setup_deferred_work(struct ipw_priv *priv)
|
||||
INIT_WORK(&priv->qos_activate, ipw_bg_qos_activate);
|
||||
#endif /* CONFIG_IPW2200_QOS */
|
||||
|
||||
tasklet_init(&priv->irq_tasklet, (void (*)(unsigned long))
|
||||
tasklet_init(&priv->irq_tasklet,
|
||||
ipw_irq_tasklet, (unsigned long)priv);
|
||||
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user