Merge a45ad71e89
("Merge tag 'rproc-v5.6' of git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc") into android-mainline
Another "small" merge point to handle conflicts in a sane way. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I5dc2f5f11275b29f3c9b5b8d4dd59864ceb6faf9
This commit is contained in:
@@ -170,6 +170,16 @@ extern void cleanup_module(void);
|
||||
*/
|
||||
#define MODULE_SOFTDEP(_softdep) MODULE_INFO(softdep, _softdep)
|
||||
|
||||
/*
|
||||
* MODULE_FILE is used for generating modules.builtin
|
||||
* So, make it no-op when this is being built as a module
|
||||
*/
|
||||
#ifdef MODULE
|
||||
#define MODULE_FILE
|
||||
#else
|
||||
#define MODULE_FILE MODULE_INFO(file, KBUILD_MODFILE);
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The following license idents are currently accepted as indicating free
|
||||
* software modules
|
||||
@@ -214,7 +224,7 @@ extern void cleanup_module(void);
|
||||
* 2. So the community can ignore bug reports including proprietary modules
|
||||
* 3. So vendors can do likewise based on their own policies
|
||||
*/
|
||||
#define MODULE_LICENSE(_license) MODULE_INFO(license, _license)
|
||||
#define MODULE_LICENSE(_license) MODULE_FILE MODULE_INFO(license, _license)
|
||||
|
||||
/*
|
||||
* Author(s), use "Name <email>" or just "Name", for multiple
|
||||
@@ -436,7 +446,7 @@ struct module {
|
||||
|
||||
#ifdef CONFIG_KALLSYMS
|
||||
/* Protected by RCU and/or module_mutex: use rcu_dereference() */
|
||||
struct mod_kallsyms *kallsyms;
|
||||
struct mod_kallsyms __rcu *kallsyms;
|
||||
struct mod_kallsyms core_kallsyms;
|
||||
|
||||
/* Section attributes */
|
||||
|
Reference in New Issue
Block a user