From patchwork Fri May 14 17:09:57 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 3389 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Fri, 14 May 2010 17:12:32 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Sat, 15 May 2010 22:45:56 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1OCyR6-0000di-09; Fri, 14 May 2010 17:12:32 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755784Ab0ENRLy (ORCPT + 1 other); Fri, 14 May 2010 13:11:54 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:48699 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753968Ab0ENRLx (ORCPT ); Fri, 14 May 2010 13:11:53 -0400 Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o4EHBjgO001957 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 14 May 2010 17:11:47 GMT Received: from acsmt355.oracle.com (acsmt355.oracle.com [141.146.40.155]) by acsinet15.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o4EGMDBC005417; Fri, 14 May 2010 17:11:43 GMT Received: from abhmt002.oracle.com by acsmt354.oracle.com with ESMTP id 242433601273857002; Fri, 14 May 2010 10:10:02 -0700 Received: from chimera.site (/71.245.98.113) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 14 May 2010 10:09:58 -0700 Date: Fri, 14 May 2010 10:09:57 -0700 From: Randy Dunlap To: Stephen Rothwell , linux-media@vger.kernel.org Cc: linux-next@vger.kernel.org, LKML , Mauro Carvalho Chehab Subject: [PATCH -next] IR: fix ir-nec-decoder build, select BITREVERSE Message-Id: <20100514100957.b4f9753f.randy.dunlap@oracle.com> In-Reply-To: <20100514161407.740da901.sfr@canb.auug.org.au> References: <20100514161407.740da901.sfr@canb.auug.org.au> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Auth-Type: Internal IP X-Source-IP: acsinet15.oracle.com [141.146.126.227] X-CT-RefId: str=0001.0A090202.4BED8454.0024:SCFMA922111,ss=1,fgs=0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Randy Dunlap Fix ir-nec-decoder build: it uses bitrev library code, so select BITREVERSE in its Kconfig. ir-nec-decoder.c:(.text+0x1a2517): undefined reference to `byte_rev_table' ir-nec-decoder.c:(.text+0x1a2526): undefined reference to `byte_rev_table' ir-nec-decoder.c:(.text+0x1a2530): undefined reference to `byte_rev_table' ir-nec-decoder.c:(.text+0x1a2539): undefined reference to `byte_rev_table' Signed-off-by: Randy Dunlap Cc: Mauro Carvalho Chehab --- drivers/media/IR/Kconfig | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- linux-next-20100514.orig/drivers/media/IR/Kconfig +++ linux-next-20100514/drivers/media/IR/Kconfig @@ -13,6 +13,7 @@ source "drivers/media/IR/keymaps/Kconfig config IR_NEC_DECODER tristate "Enable IR raw decoder for the NEC protocol" depends on IR_CORE + select BITREVERSE default y ---help---