[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20140601.192705.693805935389177182.davem@davemloft.net>
Date: Sun, 01 Jun 2014 19:27:05 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: benoit.taine@...6.fr
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
kernel-janitors@...r.kernel.org
Subject: Re: [PATCH 2/2] lpc_eth: Use resource_size instead of computation
From: Benoit Taine <benoit.taine@...6.fr>
Date: Wed, 28 May 2014 17:14:07 +0200
> @@ -1419,8 +1419,7 @@ static int lpc_eth_drv_probe(struct platform_device *pdev)
>
> netdev_dbg(ndev, "IO address start :0x%08x\n",
> res->start);
> - netdev_dbg(ndev, "IO address size :%d\n",
> - res->end - res->start + 1);
> + netdev_dbg(ndev, "IO address size :%d\n", resource_size(res));
> netdev_dbg(ndev, "IO address (mapped) :0x%p\n",
> pldat->net_base);
Please replace all of this with %pR as suggested by Joe, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists