diff options
Diffstat (limited to 'scripts/mod/modpost.h')
| -rw-r--r-- | scripts/mod/modpost.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h index 8453d6ac2f77..92a926d375d2 100644 --- a/scripts/mod/modpost.h +++ b/scripts/mod/modpost.h @@ -109,6 +109,11 @@ buf_printf(struct buffer *buf, const char *fmt, ...);  void  buf_write(struct buffer *buf, const char *s, int len); +struct namespace_list { +	struct namespace_list *next; +	char namespace[0]; +}; +  struct module {  	struct module *next;  	const char *name; @@ -121,6 +126,10 @@ struct module {  	struct buffer dev_table_buf;  	char	     srcversion[25];  	int is_dot_o; +	// Required namespace dependencies +	struct namespace_list *required_namespaces; +	// Actual imported namespaces +	struct namespace_list *imported_namespaces;  };  struct elf_info { | 
