Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus: MIPS: RB532: Fix devices.c compilation. MIPS: Fix MIPS I build.
This commit is contained in:
commit
86a7b7ef54
@ -306,6 +306,7 @@ static inline int mips_atomic_set(struct pt_regs *regs,
|
|||||||
|
|
||||||
if (cpu_has_llsc && R10000_LLSC_WAR) {
|
if (cpu_has_llsc && R10000_LLSC_WAR) {
|
||||||
__asm__ __volatile__ (
|
__asm__ __volatile__ (
|
||||||
|
" .set mips3 \n"
|
||||||
" li %[err], 0 \n"
|
" li %[err], 0 \n"
|
||||||
"1: ll %[old], (%[addr]) \n"
|
"1: ll %[old], (%[addr]) \n"
|
||||||
" move %[tmp], %[new] \n"
|
" move %[tmp], %[new] \n"
|
||||||
@ -320,6 +321,7 @@ static inline int mips_atomic_set(struct pt_regs *regs,
|
|||||||
" "STR(PTR)" 1b, 4b \n"
|
" "STR(PTR)" 1b, 4b \n"
|
||||||
" "STR(PTR)" 2b, 4b \n"
|
" "STR(PTR)" 2b, 4b \n"
|
||||||
" .previous \n"
|
" .previous \n"
|
||||||
|
" .set mips0 \n"
|
||||||
: [old] "=&r" (old),
|
: [old] "=&r" (old),
|
||||||
[err] "=&r" (err),
|
[err] "=&r" (err),
|
||||||
[tmp] "=&r" (tmp)
|
[tmp] "=&r" (tmp)
|
||||||
@ -329,6 +331,7 @@ static inline int mips_atomic_set(struct pt_regs *regs,
|
|||||||
: "memory");
|
: "memory");
|
||||||
} else if (cpu_has_llsc) {
|
} else if (cpu_has_llsc) {
|
||||||
__asm__ __volatile__ (
|
__asm__ __volatile__ (
|
||||||
|
" .set mips3 \n"
|
||||||
" li %[err], 0 \n"
|
" li %[err], 0 \n"
|
||||||
"1: ll %[old], (%[addr]) \n"
|
"1: ll %[old], (%[addr]) \n"
|
||||||
" move %[tmp], %[new] \n"
|
" move %[tmp], %[new] \n"
|
||||||
@ -347,6 +350,7 @@ static inline int mips_atomic_set(struct pt_regs *regs,
|
|||||||
" "STR(PTR)" 1b, 5b \n"
|
" "STR(PTR)" 1b, 5b \n"
|
||||||
" "STR(PTR)" 2b, 5b \n"
|
" "STR(PTR)" 2b, 5b \n"
|
||||||
" .previous \n"
|
" .previous \n"
|
||||||
|
" .set mips0 \n"
|
||||||
: [old] "=&r" (old),
|
: [old] "=&r" (old),
|
||||||
[err] "=&r" (err),
|
[err] "=&r" (err),
|
||||||
[tmp] "=&r" (tmp)
|
[tmp] "=&r" (tmp)
|
||||||
|
@ -110,7 +110,6 @@ static struct korina_device korina_dev0_data = {
|
|||||||
static struct platform_device korina_dev0 = {
|
static struct platform_device korina_dev0 = {
|
||||||
.id = -1,
|
.id = -1,
|
||||||
.name = "korina",
|
.name = "korina",
|
||||||
.dev.driver_data = &korina_dev0_data,
|
|
||||||
.resource = korina_dev0_res,
|
.resource = korina_dev0_res,
|
||||||
.num_resources = ARRAY_SIZE(korina_dev0_res),
|
.num_resources = ARRAY_SIZE(korina_dev0_res),
|
||||||
};
|
};
|
||||||
@ -332,6 +331,8 @@ static int __init plat_setup_devices(void)
|
|||||||
/* set the uart clock to the current cpu frequency */
|
/* set the uart clock to the current cpu frequency */
|
||||||
rb532_uart_res[0].uartclk = idt_cpu_freq;
|
rb532_uart_res[0].uartclk = idt_cpu_freq;
|
||||||
|
|
||||||
|
dev_set_drvdata(&korina_dev0.dev, &korina_dev0_data);
|
||||||
|
|
||||||
return platform_add_devices(rb532_devs, ARRAY_SIZE(rb532_devs));
|
return platform_add_devices(rb532_devs, ARRAY_SIZE(rb532_devs));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user