提交 57a503c6 编写于 作者: V Viresh KUMAR 提交者: David S. Miller

net/stmmac: Move "#include <linux/platform_device.h>" to linux/stmmac.h

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: NViresh Kumar <viresh.kumar@st.com>
Acked-by: NGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e67f88dd
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
*******************************************************************************/ *******************************************************************************/
#define DRV_MODULE_VERSION "Nov_2010" #define DRV_MODULE_VERSION "Nov_2010"
#include <linux/platform_device.h>
#include <linux/stmmac.h> #include <linux/stmmac.h>
#include "common.h" #include "common.h"
......
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#ifndef __STMMAC_PLATFORM_DATA #ifndef __STMMAC_PLATFORM_DATA
#define __STMMAC_PLATFORM_DATA #define __STMMAC_PLATFORM_DATA
#include <linux/platform_device.h>
/* platform data for platform device structure's platform_data field */ /* platform data for platform device structure's platform_data field */
/* Private data for the STM on-board ethernet driver */ /* Private data for the STM on-board ethernet driver */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册