Skip to content

Commit

Permalink
net/stmmac: Move "#include <linux/platform_device.h>" to linux/stmmac.h
Browse files Browse the repository at this point in the history
stmmac.h uses struct platform_device and doesn't include
<linux/platform_device.h>. Whereas drivers/net/stmmac/stmmac.h includes it, but
doesn't directly use it. And so we get following compilation warning while using
this file:
	warning: ‘struct platform_device’ declared inside parameter list

This patch includes <linux/platform_device.h> in linux/stmmac.h and removes it
from drivers/net/stmmac/stmmac.h

Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Viresh KUMAR authored and David S. Miller committed May 3, 2011
1 parent e67f88d commit 57a503c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion drivers/net/stmmac/stmmac.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*******************************************************************************/

#define DRV_MODULE_VERSION "Nov_2010"
#include <linux/platform_device.h>
#include <linux/stmmac.h>

#include "common.h"
Expand Down
2 changes: 2 additions & 0 deletions include/linux/stmmac.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
#ifndef __STMMAC_PLATFORM_DATA
#define __STMMAC_PLATFORM_DATA

#include <linux/platform_device.h>

/* platform data for platform device structure's platform_data field */

/* Private data for the STM on-board ethernet driver */
Expand Down

0 comments on commit 57a503c

Please sign in to comment.