All of lore.kernel.org
 help / color / mirror / Atom feed
* [net PATCH 1/1] drivers: net: cpsw: fix compilation error with cpsw driver
@ 2013-06-21 13:45 Mugunthan V N
  2013-06-24  7:28 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Mugunthan V N @ 2013-06-21 13:45 UTC (permalink / raw)
  To: netdev; +Cc: davem, Mugunthan V N

drivers/net/ethernet/ti/cpsw.c: In function 'cpsw_suspend':
drivers/net/ethernet/ti/cpsw.c:1979:26: error: 'priv' undeclared (first use in this function)
drivers/net/ethernet/ti/cpsw.c:1979:26: note: each undeclared identifier is reported only once for each function it appears in
make[4]: *** [drivers/net/ethernet/ti/cpsw.o] Error 1

The compilation error was introduced by the following commit
6d3d76f (drivers: net: cpsw: fix cpsw clock gating issue across suspend/resume)

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
---
 drivers/net/ethernet/ti/cpsw.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
index e66a202..d1a769f 100644
--- a/drivers/net/ethernet/ti/cpsw.c
+++ b/drivers/net/ethernet/ti/cpsw.c
@@ -1973,6 +1973,7 @@ static int cpsw_suspend(struct device *dev)
 {
 	struct platform_device	*pdev = to_platform_device(dev);
 	struct net_device	*ndev = platform_get_drvdata(pdev);
+	struct cpsw_priv	*priv = netdev_priv(ndev);
 
 	if (netif_running(ndev))
 		cpsw_ndo_stop(ndev);
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [net PATCH 1/1] drivers: net: cpsw: fix compilation error with cpsw driver
  2013-06-21 13:45 [net PATCH 1/1] drivers: net: cpsw: fix compilation error with cpsw driver Mugunthan V N
@ 2013-06-24  7:28 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-06-24  7:28 UTC (permalink / raw)
  To: mugunthanvnm; +Cc: netdev

From: Mugunthan V N <mugunthanvnm@ti.com>
Date: Fri, 21 Jun 2013 19:15:09 +0530

> drivers/net/ethernet/ti/cpsw.c: In function 'cpsw_suspend':
> drivers/net/ethernet/ti/cpsw.c:1979:26: error: 'priv' undeclared (first use in this function)
> drivers/net/ethernet/ti/cpsw.c:1979:26: note: each undeclared identifier is reported only once for each function it appears in
> make[4]: *** [drivers/net/ethernet/ti/cpsw.o] Error 1
> 
> The compilation error was introduced by the following commit
> 6d3d76f (drivers: net: cpsw: fix cpsw clock gating issue across suspend/resume)
> 
> Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>

Applied.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-06-24  7:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-21 13:45 [net PATCH 1/1] drivers: net: cpsw: fix compilation error with cpsw driver Mugunthan V N
2013-06-24  7:28 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.