From patchwork Wed May 26 17:08:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 3501 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Wed, 26 May 2010 17:09:47 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra with IMAP (fetchmail-6.3.6) for (single-drop); Wed, 26 May 2010 14:11:06 -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 1OHK71-0007hy-9t; Wed, 26 May 2010 17:09:47 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756890Ab0EZRJ1 (ORCPT + 1 other); Wed, 26 May 2010 13:09:27 -0400 Received: from rcsinet10.oracle.com ([148.87.113.121]:57802 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755149Ab0EZRJ0 (ORCPT ); Wed, 26 May 2010 13:09:26 -0400 Received: from rcsinet13.oracle.com (rcsinet13.oracle.com [148.87.113.125]) by rcsinet10.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o4QH9IbJ006813 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 26 May 2010 17:09:19 GMT Received: from acsmt353.oracle.com (acsmt353.oracle.com [141.146.40.153]) by rcsinet13.oracle.com (Switch-3.4.2/Switch-3.4.1) with ESMTP id o4QGdBQY001234; Wed, 26 May 2010 17:09:17 GMT Received: from abhmt006.oracle.com by acsmt354.oracle.com with ESMTP id 270734471274893735; Wed, 26 May 2010 10:08:55 -0700 Received: from chimera.site (/71.245.98.113) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 26 May 2010 10:08:54 -0700 Date: Wed, 26 May 2010 10:08:51 -0700 From: Randy Dunlap To: Stephen Rothwell , Mauro Carvalho Chehab , linux-media@vger.kernel.org Cc: linux-next@vger.kernel.org, LKML Subject: [PATCH -next] media/IR: nec-decoder needs to select BITREV Message-Id: <20100526100851.25b57d9b.randy.dunlap@oracle.com> In-Reply-To: <20100526153443.f18a4d2b.sfr@canb.auug.org.au> References: <20100526153443.f18a4d2b.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: rcsinet13.oracle.com [148.87.113.125] X-CT-RefId: str=0001.0A090204.4BFD55C0.0044:SCFMA4539811,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 --- [resend from May 14, 2010; still needed for linux-next 2010-May-26] drivers/media/IR/Kconfig | 1 + 1 file changed, 1 insertion(+) --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** -- 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---