From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751295AbdAQIOX (ORCPT ); Tue, 17 Jan 2017 03:14:23 -0500 Received: from mail-wm0-f65.google.com ([74.125.82.65]:32973 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750884AbdAQIM4 (ORCPT ); Tue, 17 Jan 2017 03:12:56 -0500 From: Valentin Rothberg To: shorne@gmail.com Cc: stefan.kristiansson@saunalahti.fi, jonas@southpole.se, openrisc@lists.librecores.org, linux-kernel@vger.kernel.org, Valentin Rothberg Subject: [PATCH] arch/openrisc/lib/memcpy.c: use correct OR1200 option Date: Tue, 17 Jan 2017 09:12:48 +0100 Message-Id: <20170117081248.3449-1-valentinrothberg@gmail.com> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Kconfig option for OR12000 is OR1K_1200. Signed-off-by: Valentin Rothberg --- arch/openrisc/lib/memcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -#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 -- 2.11.0