From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751878AbaIUSpi (ORCPT ); Sun, 21 Sep 2014 14:45:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42130 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751755AbaIUSpg (ORCPT ); Sun, 21 Sep 2014 14:45:36 -0400 Date: Sun, 21 Sep 2014 20:42:32 +0200 From: Oleg Nesterov To: "H. Peter Anvin" , Ingo Molnar Cc: Andi Kleen , Andy Lutomirski , Denys Vlasenko , Peter Zijlstra , x86@kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 2/2] x86, lib/Makefile: remove the unnecessary "+= thunk_64.o" Message-ID: <20140921184232.GB23727@redhat.com> References: <20140921184125.GA23719@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140921184125.GA23719@redhat.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Trivial. We have "lib-y += thunk_$(BITS).o" at the start, no need to add thunk_64.o if !CONFIG_X86_32. Signed-off-by: Oleg Nesterov Acked-by: Andy Lutomirski --- arch/x86/lib/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/lib/Makefile b/arch/x86/lib/Makefile index 4d4f96a..66127b9 100644 --- a/arch/x86/lib/Makefile +++ b/arch/x86/lib/Makefile @@ -39,7 +39,7 @@ endif else obj-y += iomap_copy_64.o lib-y += csum-partial_64.o csum-copy_64.o csum-wrappers_64.o - lib-y += thunk_64.o clear_page_64.o copy_page_64.o + lib-y += clear_page_64.o copy_page_64.o lib-y += memmove_64.o memset_64.o lib-y += copy_user_64.o copy_user_nocache_64.o lib-y += cmpxchg16b_emu.o -- 1.5.5.1