Merge branch 'master' into for-next
Pull linus#master to merge PER_CPU_DEF_ATTRIBUTES and alpha build fix changes. As alpha in percpu tree uses 'weak' attribute instead of inline assembly, there's no need for __used attribute. Conflicts: arch/alpha/include/asm/percpu.h arch/mn10300/kernel/vmlinux.lds.S include/linux/percpu-defs.h
This commit is contained in:
5
scripts/dtc/.gitignore
vendored
Normal file
5
scripts/dtc/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
dtc
|
||||
dtc-lexer.lex.c
|
||||
dtc-parser.tab.c
|
||||
dtc-parser.tab.h
|
||||
|
||||
@@ -1426,6 +1426,8 @@ sub dump_struct($$) {
|
||||
# strip comments:
|
||||
$members =~ s/\/\*.*?\*\///gos;
|
||||
$nested =~ s/\/\*.*?\*\///gos;
|
||||
# strip kmemcheck_bitfield_{begin,end}.*;
|
||||
$members =~ s/kmemcheck_bitfield_.*?;//gos;
|
||||
|
||||
create_parameterlist($members, ';', $file);
|
||||
check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested);
|
||||
@@ -1468,8 +1470,6 @@ sub dump_enum($$) {
|
||||
}
|
||||
|
||||
}
|
||||
# strip kmemcheck_bitfield_{begin,end}.*;
|
||||
$members =~ s/kmemcheck_bitfield_.*?;//gos;
|
||||
|
||||
output_declaration($declaration_name,
|
||||
'enum',
|
||||
|
||||
@@ -237,7 +237,7 @@ static void write_header(void)
|
||||
fprintf(out, " * Linux logo %s\n", logoname);
|
||||
fputs(" */\n\n", out);
|
||||
fputs("#include <linux/linux_logo.h>\n\n", out);
|
||||
fprintf(out, "static const unsigned char %s_data[] __initconst = {\n",
|
||||
fprintf(out, "static unsigned char %s_data[] __initdata = {\n",
|
||||
logoname);
|
||||
}
|
||||
|
||||
@@ -374,7 +374,7 @@ static void write_logo_clut224(void)
|
||||
fputs("\n};\n\n", out);
|
||||
|
||||
/* write logo clut */
|
||||
fprintf(out, "static const unsigned char %s_clut[] __initconst = {\n",
|
||||
fprintf(out, "static unsigned char %s_clut[] __initdata = {\n",
|
||||
logoname);
|
||||
write_hex_cnt = 0;
|
||||
for (i = 0; i < logo_clutsize; i++) {
|
||||
|
||||
Reference in New Issue
Block a user