dect
/
linux-2.6
Archived
13
0
Fork 0

spi/tegra: fix compilation error in spi-tegra.c

Add #include <linux/module.h> to spi-tegra.c to fix a compilation error
after the removal of module.h from device.h (in patch: "include: replace
linux/module.h with "struct module" wherever possible").

Signed-off-by: Marc Dietrich <marvin24@gmx.de>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
Marc Dietrich 2011-10-13 11:01:33 +02:00 committed by Grant Likely
parent 7eb187b3cd
commit 5b7bea9f12
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>