diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-09-22 20:10:23 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-22 20:10:23 -0400 |
commit | 28eb177dfa5982d132edceed891cb3885df258bb (patch) | |
tree | 5f8fdc37ad1d8d0793e9c47da7d908b97c814ffb /scripts | |
parent | fd8ae94eea9bb4269d6dff1b47b9dc741bd70d0b (diff) | |
parent | db392219c5f572610645696e3672f6ea38783a65 (diff) |
Merge branch 'master' into upstream
Conflicts:
net/ieee80211/ieee80211_crypt_tkip.c
net/ieee80211/ieee80211_crypt_wep.c
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkstack.pl | 2 | ||||
-rw-r--r-- | scripts/mod/file2alias.c | 12 |
2 files changed, 14 insertions, 0 deletions
diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl index b34924663ac1..f7844f6aa487 100755 --- a/scripts/checkstack.pl +++ b/scripts/checkstack.pl | |||
@@ -62,6 +62,8 @@ my (@stack, $re, $x, $xs); | |||
62 | } elsif ($arch eq 'ppc64') { | 62 | } elsif ($arch eq 'ppc64') { |
63 | #XXX | 63 | #XXX |
64 | $re = qr/.*stdu.*r1,-($x{1,8})\(r1\)/o; | 64 | $re = qr/.*stdu.*r1,-($x{1,8})\(r1\)/o; |
65 | } elsif ($arch eq 'powerpc') { | ||
66 | $re = qr/.*st[dw]u.*r1,-($x{1,8})\(r1\)/o; | ||
65 | } elsif ($arch =~ /^s390x?$/) { | 67 | } elsif ($arch =~ /^s390x?$/) { |
66 | # 11160: a7 fb ff 60 aghi %r15,-160 | 68 | # 11160: a7 fb ff 60 aghi %r15,-160 |
67 | $re = qr/.*ag?hi.*\%r15,-(([0-9]{2}|[3-9])[0-9]{2})/o; | 69 | $re = qr/.*ag?hi.*\%r15,-(([0-9]{2}|[3-9])[0-9]{2})/o; |
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index e2de650d3dbf..de76da80443f 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -265,6 +265,14 @@ static int do_ccw_entry(const char *filename, | |||
265 | return 1; | 265 | return 1; |
266 | } | 266 | } |
267 | 267 | ||
268 | /* looks like: "ap:tN" */ | ||
269 | static int do_ap_entry(const char *filename, | ||
270 | struct ap_device_id *id, char *alias) | ||
271 | { | ||
272 | sprintf(alias, "ap:t%02X", id->dev_type); | ||
273 | return 1; | ||
274 | } | ||
275 | |||
268 | /* Looks like: "serio:tyNprNidNexN" */ | 276 | /* Looks like: "serio:tyNprNidNexN" */ |
269 | static int do_serio_entry(const char *filename, | 277 | static int do_serio_entry(const char *filename, |
270 | struct serio_device_id *id, char *alias) | 278 | struct serio_device_id *id, char *alias) |
@@ -503,6 +511,10 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
503 | do_table(symval, sym->st_size, | 511 | do_table(symval, sym->st_size, |
504 | sizeof(struct ccw_device_id), "ccw", | 512 | sizeof(struct ccw_device_id), "ccw", |
505 | do_ccw_entry, mod); | 513 | do_ccw_entry, mod); |
514 | else if (sym_is(symname, "__mod_ap_device_table")) | ||
515 | do_table(symval, sym->st_size, | ||
516 | sizeof(struct ap_device_id), "ap", | ||
517 | do_ap_entry, mod); | ||
506 | else if (sym_is(symname, "__mod_serio_device_table")) | 518 | else if (sym_is(symname, "__mod_serio_device_table")) |
507 | do_table(symval, sym->st_size, | 519 | do_table(symval, sym->st_size, |
508 | sizeof(struct serio_device_id), "serio", | 520 | sizeof(struct serio_device_id), "serio", |