OSDN Git Service

can: flexcan: remove unused variable
authorMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 27 Nov 2014 20:28:17 +0000 (21:28 +0100)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 21 Jan 2015 21:47:44 +0000 (22:47 +0100)
This patch removes the unused variable "struct net_device *dev" from the
"struct flexcan_priv".

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/flexcan.c

index b1d583b..80c46ad 100644 (file)
@@ -247,7 +247,6 @@ struct flexcan_devtype_data {
 
 struct flexcan_priv {
        struct can_priv can;
-       struct net_device *dev;
        struct napi_struct napi;
 
        void __iomem *base;
@@ -1220,7 +1219,6 @@ static int flexcan_probe(struct platform_device *pdev)
                CAN_CTRLMODE_LISTENONLY | CAN_CTRLMODE_3_SAMPLES |
                CAN_CTRLMODE_BERR_REPORTING;
        priv->base = base;
-       priv->dev = dev;
        priv->clk_ipg = clk_ipg;
        priv->clk_per = clk_per;
        priv->pdata = dev_get_platdata(&pdev->dev);