.. | .. |
---|
854 | 854 | set_irq_regs(old_regs); |
---|
855 | 855 | } |
---|
856 | 856 | |
---|
857 | | -#ifndef CONFIG_PREEMPT_RT_FULL |
---|
858 | 857 | void do_softirq_own_stack(void) |
---|
859 | 858 | { |
---|
860 | 859 | void *orig_sp, *sp = softirq_stack[smp_processor_id()]; |
---|
.. | .. |
---|
869 | 868 | __asm__ __volatile__("mov %0, %%sp" |
---|
870 | 869 | : : "r" (orig_sp)); |
---|
871 | 870 | } |
---|
872 | | -#endif |
---|
873 | 871 | |
---|
874 | 872 | #ifdef CONFIG_HOTPLUG_CPU |
---|
875 | 873 | void fixup_irqs(void) |
---|
.. | .. |
---|
917 | 915 | dp = of_find_node_by_path("/"); |
---|
918 | 916 | dp = dp->child; |
---|
919 | 917 | while (dp) { |
---|
920 | | - if (!strcmp(dp->name, "counter-timer")) |
---|
| 918 | + if (of_node_name_eq(dp, "counter-timer")) |
---|
921 | 919 | break; |
---|
922 | 920 | dp = dp->sibling; |
---|
923 | 921 | } |
---|