From f19d1e62002634663b92ae852070a66ee74197f9 Mon Sep 17 00:00:00 2001 From: Joe Jin Date: Thu, 17 May 2012 13:27:55 +0800 Subject: [PATCH] drivers/net: Add module.h to drivers who were implicitly using it The device.h header was including module.h, making it present for most of these drivers. But we want to clean that up. Call out the include of module.h in the modular network drivers. Signed-off-by: Paul Gortmaker (backported from commit 9d9779e723a5d23b94abbe5bb7d1197921f6f3dd) Signed-off-by: Joe Jin --- drivers/net/e1000e/param.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/e1000e/param.c b/drivers/net/e1000e/param.c index 4dd9b63273f62..20e93b08e7f3c 100644 --- a/drivers/net/e1000e/param.c +++ b/drivers/net/e1000e/param.c @@ -27,6 +27,7 @@ *******************************************************************************/ #include +#include #include #include "e1000.h" -- 2.50.1