mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-21 20:48:34 -04:00
net: ethernet: toshiba: ps3_gelic_net: Fix some kernel-doc misdemeanours
Fixes the following W=1 kernel build warning(s): drivers/net/ethernet/toshiba/ps3_gelic_net.c:1107: warning: Function parameter or member 'irq' not described in 'gelic_card_interrupt' drivers/net/ethernet/toshiba/ps3_gelic_net.c:1107: warning: Function parameter or member 'ptr' not described in 'gelic_card_interrupt' drivers/net/ethernet/toshiba/ps3_gelic_net.c:1407: warning: Function parameter or member 'txqueue' not described in 'gelic_net_tx_timeout' drivers/net/ethernet/toshiba/ps3_gelic_net.c:1439: warning: Function parameter or member 'napi' not described in 'gelic_ether_setup_netdev_ops' drivers/net/ethernet/toshiba/ps3_gelic_net.c:1639: warning: Function parameter or member 'dev' not described in 'ps3_gelic_driver_probe' drivers/net/ethernet/toshiba/ps3_gelic_net.c:1795: warning: Function parameter or member 'dev' not described in 'ps3_gelic_driver_remove' Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
807086021b
commit
b510363214
@@ -1100,7 +1100,7 @@ static int gelic_net_poll(struct napi_struct *napi, int budget)
|
||||
return packets_done;
|
||||
}
|
||||
|
||||
/**
|
||||
/*
|
||||
* gelic_card_interrupt - event handler for gelic_net
|
||||
*/
|
||||
static irqreturn_t gelic_card_interrupt(int irq, void *ptr)
|
||||
@@ -1400,6 +1400,7 @@ static void gelic_net_tx_timeout_task(struct work_struct *work)
|
||||
/**
|
||||
* gelic_net_tx_timeout - called when the tx timeout watchdog kicks in.
|
||||
* @netdev: interface device structure
|
||||
* @txqueue: unused
|
||||
*
|
||||
* called, if tx hangs. Schedules a task that resets the interface
|
||||
*/
|
||||
@@ -1431,6 +1432,7 @@ static const struct net_device_ops gelic_netdevice_ops = {
|
||||
/**
|
||||
* gelic_ether_setup_netdev_ops - initialization of net_device operations
|
||||
* @netdev: net_device structure
|
||||
* @napi: napi structure
|
||||
*
|
||||
* fills out function pointers in the net_device structure
|
||||
*/
|
||||
@@ -1632,7 +1634,7 @@ static void gelic_card_get_vlan_info(struct gelic_card *card)
|
||||
dev_info(ctodev(card), "internal vlan %s\n",
|
||||
card->vlan_required? "enabled" : "disabled");
|
||||
}
|
||||
/**
|
||||
/*
|
||||
* ps3_gelic_driver_probe - add a device to the control of this driver
|
||||
*/
|
||||
static int ps3_gelic_driver_probe(struct ps3_system_bus_device *dev)
|
||||
@@ -1787,7 +1789,7 @@ static int ps3_gelic_driver_probe(struct ps3_system_bus_device *dev)
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
/*
|
||||
* ps3_gelic_driver_remove - remove a device from the control of this driver
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user