Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drivers/w1: Add export.h for EXPORT_SYMBOL/THIS_MODULE

Give these files export.h so that they can reliably get the EXPORT_SYMBOL
and THIS_MODULE macros in the future, once module.h isn't implicitly
everywhere.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

+2
+1
drivers/w1/w1_family.c
··· 23 23 #include <linux/list.h> 24 24 #include <linux/sched.h> /* schedule_timeout() */ 25 25 #include <linux/delay.h> 26 + #include <linux/export.h> 26 27 27 28 #include "w1_family.h" 28 29 #include "w1.h"
+1
drivers/w1/w1_int.c
··· 24 24 #include <linux/delay.h> 25 25 #include <linux/kthread.h> 26 26 #include <linux/slab.h> 27 + #include <linux/export.h> 27 28 28 29 #include "w1.h" 29 30 #include "w1_log.h"