sci0: serial@00088240 {
compatible = "renesas,sci";
reg = <0x00088240 8>;
- interrupts = <214 0>, <215 0>, <216 0>, <217 0>;
+ interrupts = <214 0>, <215 0>, <216 0>, <0 0>, <0 0>, <217 0>;
clocks = <&pclk>;
clock-names = "sci_ick";
};
sci1: serial@00088248 {
compatible = "renesas,sci";
reg = <0x00088248 8>;
- interrupts = <218 0>, <219 0>, <220 0>, <221 0>;
+ interrupts = <218 0>, <219 0>, <220 0>, <0 0>, <0 0>, <221 0>;
clocks = <&pclk>;
clock-names = "sci_ick";
};
static inline int arch_irqs_disabled_flags(unsigned long psw)
{
- return (psw & 0x10000) == 0;
+ return (psw & (1 << 16)) == 0;
}
static inline int arch_irqs_disabled(void)
.section .head.text,"ax"
startup:
mov.l #CONFIG_INITIAL_STACK,r0
-#if !defined(CONFIG_RX_GDB_SIM) || 1
+#if !defined(CONFIG_RX_GDB_SIM)
#if defined(CONFIG_ROMKERNEL)
mov.l #setup_bsc,r1
jsr r1
static int __init device_probe(void)
{
- of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
+ of_platform_default_populate(NULL, NULL, NULL);
return 0;
}