diff options
author | Valentin Rothberg <valentinrothberg@gmail.com> | 2017-01-17 09:12:48 +0100 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2017-02-25 05:08:46 +0900 |
commit | e34f671d1cf8a032a8cd248a12eef217f1789c4c (patch) | |
tree | 64f304bcc4b2c24b2614087709e34708f4b0ca4e /arch | |
parent | 0ccffdf5e114176c14cb4aea584f77794a734865 (diff) | |
download | linux-e34f671d1cf8a032a8cd248a12eef217f1789c4c.tar.bz2 |
arch/openrisc/lib/memcpy.c: use correct OR1200 option
The Kconfig option for OR12000 is OR1K_1200.
Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com>
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/openrisc/lib/memcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/openrisc/lib/memcpy.c b/arch/openrisc/lib/memcpy.c index 4706f01a199a..669887a60e27 100644 --- a/arch/openrisc/lib/memcpy.c +++ b/arch/openrisc/lib/memcpy.c @@ -17,7 +17,7 @@ #include <linux/string.h> -#ifdef CONFIG_OR1200 +#ifdef CONFIG_OR1K_1200 /* * Do memcpy with word copies and loop unrolling. This gives the * best performance on the OR1200 and MOR1KX archirectures |