From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH -next] platform/x86: fix amilo-rfkill build errors Date: Wed, 15 May 2013 14:03:35 -0700 Message-ID: <5193F827.8030809@infradead.org> References: <20130515132627.817585a3d9fb3a3e502eb586@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from merlin.infradead.org ([205.233.59.134]:41024 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932431Ab3EOVEU (ORCPT ); Wed, 15 May 2013 17:04:20 -0400 In-Reply-To: <20130515132627.817585a3d9fb3a3e502eb586@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Ben Hutchings , Matthew Garrett , Platform Driver From: Randy Dunlap Fix build error in amilo-rfkill.c by making it dependent on SERIO_I8042: drivers/built-in.o: In function `amilo_a1655_rfkill_set_block': amilo-rfkill.c:(.text+0x264a89): undefined reference to `i8042_lock_chip' amilo-rfkill.c:(.text+0x264a97): undefined reference to `i8042_command' amilo-rfkill.c:(.text+0x264a9e): undefined reference to `i8042_unlock_chip' Signed-off-by: Randy Dunlap Cc: Ben Hutchings --- drivers/platform/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20130515.orig/drivers/platform/x86/Kconfig +++ linux-next-20130515/drivers/platform/x86/Kconfig @@ -175,7 +175,7 @@ config FUJITSU_TABLET config AMILO_RFKILL tristate "Fujitsu-Siemens Amilo rfkill support" - depends on RFKILL + depends on RFKILL && SERIO_I8042 ---help--- This is a driver for enabling wifi on some Fujitsu-Siemens Amilo laptops.