net: qualcomm: rmnet: remove unused variable priv
priv is being assigned but is never used, so remove it.
Cleans up clang build warning:
"warning: Value stored to 'priv' is never read"
Fixes: ceed73a2cf
("drivers: net: ethernet: qualcomm: rmnet: Initial implementation")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
33c8182166
commit
5debc53ffe
|
@ -73,9 +73,6 @@ static const struct net_device_ops rmnet_vnd_ops = {
|
|||
*/
|
||||
void rmnet_vnd_setup(struct net_device *rmnet_dev)
|
||||
{
|
||||
struct rmnet_priv *priv;
|
||||
|
||||
priv = netdev_priv(rmnet_dev);
|
||||
netdev_dbg(rmnet_dev, "Setting up device %s\n", rmnet_dev->name);
|
||||
|
||||
rmnet_dev->netdev_ops = &rmnet_vnd_ops;
|
||||
|
|
Loading…
Reference in New Issue