mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 23:45:31 +08:00
5fbbf8a1a9
The modifications include: 1. Kconfig of Score: we don't support ioremap 2. Missed headfile including 3. There are some errors in other people's commit not checked by us, we fix it now 3.1 arch/score/kernel/entry.S: wrong instructions 3.2 arch/score/kernel/process.c : just some typos Signed-off-by: Lennox Wu <lennox.wu@gmail.com>
9 lines
173 B
C
9 lines
173 B
C
#ifndef _ASM_SCORE_IO_H
|
|
#define _ASM_SCORE_IO_H
|
|
|
|
#include <asm-generic/io.h>
|
|
|
|
#define virt_to_bus virt_to_phys
|
|
#define bus_to_virt phys_to_virt
|
|
#endif /* _ASM_SCORE_IO_H */
|