static struct ins_ops *powerpc__associate_instruction_ops(struct arch *arch, const char *name) { int i; struct ins_ops *ops; /* * - Interested only if instruction starts with 'b'. * - Few start with 'b', but aren't branch instructions. */ if (name[0] != 'b' || !strncmp(name, "bcd", 3) || !strncmp(name, "brinc", 5) || !strncmp(name, "bper", 4)) return NULL; ops = &jump_ops; i = strlen(name) - 1; if (i < 0) return NULL; /* ignore optional hints at the end of the instructions */ if (name[i] == '+' || name[i] == '-') i--; if (name[i] == 'l' || (name[i] == 'a' && name[i-1] == 'l')) { /* * if the instruction ends up with 'l' or 'la', then * those are considered 'calls' since they update LR. * ... except for 'bnl' which is branch if not less than * and the absolute form of the same. */ if (strcmp(name, "bnl") && strcmp(name, "bnl+") && strcmp(name, "bnl-") && strcmp(name, "bnla") && strcmp(name, "bnla+") && strcmp(name, "bnla-")) ops = &call_ops; } if (name[i] == 'r' && name[i-1] == 'l') /* * instructions ending with 'lr' are considered to be * return instructions */ ops = &ret_ops; arch__associate_ins_ops(arch, name, ops); return ops; } static int powerpc__annotate_init(struct arch *arch) { if (!arch->initialized) { arch->initialized = true; arch->associate_instruction_ops = powerpc__associate_instruction_ops; arch->objdump.comment_char = '#'; } return 0; } d class='sub right'>Tobias Klauser
summaryrefslogtreecommitdiff
path: root/sound/soc/omap/Makefile
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-02-03 22:19:15 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-02-03 22:19:15 +0100
commit424414947da3dd5cb0d60e4f299f7c51e472ae77 (patch)
treea4067480c4256c80ae8f8438a3e4bb88e32050bc /sound/soc/omap/Makefile
parenta3683e0c1410c5c8136a7a93b0336ce88d3b893a (diff)
parentd07830db1bdb254e4b50d366010b219286b8c937 (diff)
Merge tag 'usb-serial-4.10-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus
Johan writes: USB-serial fixes for v4.10-rc7 One more device ID for pl2303. Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'sound/soc/omap/Makefile')