From patchwork Sun Jul 10 19:56:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 158 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Sun, 10 Jul 2011 21:09:10 -0300 Received: from mchehab by infradead.org with local (Exim 4.72) (envelope-from ) id 1Qg43h-0008Th-Uq for mchehab@infradead.org; Sun, 10 Jul 2011 21:09:10 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Sun, 10 Jul 2011 21:09:09 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Qg0Cj-0001lz-S8; Sun, 10 Jul 2011 20:02:14 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755799Ab1GJUBy (ORCPT + 1 other); Sun, 10 Jul 2011 16:01:54 -0400 Received: from oproxy5-pub.bluehost.com ([67.222.38.55]:33996 "HELO oproxy5-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755846Ab1GJUAl (ORCPT ); Sun, 10 Jul 2011 16:00:41 -0400 Received: (qmail 3268 invoked by uid 0); 10 Jul 2011 20:00:40 -0000 Received: from unknown (HELO box742.bluehost.com) (66.147.244.242) by cpoproxy2.bluehost.com with SMTP; 10 Jul 2011 20:00:40 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=xenotime.net; h=Received:Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References:Organization:X-Mailer:Mime-Version:Content-Type:Content-Transfer-Encoding:X-Identified-User; b=Mg+FvnuV190NJzNZXyCYW7Vg8Mdx5MjXSfNkEdrohzjC7mNbSGe/ya1bEkVb6oqSW+Tz5VzLVsygsJNaV1LLwSRdiGc9qM4drTj2MxjJtZzNnSUBerJBcDnBq/zoNEZr; Received: from static-50-53-38-135.bvtn.or.frontiernet.net ([50.53.38.135] helo=chimera.site) by box742.bluehost.com with esmtpa (Exim 4.69) (envelope-from ) id 1Qg0BE-0002BN-2l; Sun, 10 Jul 2011 14:00:40 -0600 Date: Sun, 10 Jul 2011 12:56:43 -0700 From: Randy Dunlap To: lkml Cc: linux-media@vger.kernel.org, mchehab@infradead.org Subject: [PATCH 5/9] media/radio: fix rtrack2 CONFIG IO PORT Message-Id: <20110710125643.e83039d4.rdunlap@xenotime.net> In-Reply-To: <20110710125109.c72f9c2d.rdunlap@xenotime.net> References: <20110710125109.c72f9c2d.rdunlap@xenotime.net> Organization: YPO4 X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: From: Randy Dunlap Modify radio-rtrack2 to use HEX_STRING(CONFIG_RADIO_RTRACK2_PORT) so that the correct IO port value is used. Fixes this error message when CONFIG_RADIO_RTRACK2_PORT=30c: drivers/media/radio/radio-rtrack2.c:31:17: error: invalid suffix "c" on integer constant Signed-off-by: Randy Dunlap --- drivers/media/radio/radio-rtrack2.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) -- 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-20110707.orig/drivers/media/radio/radio-rtrack2.c +++ linux-next-20110707/drivers/media/radio/radio-rtrack2.c @@ -13,6 +13,7 @@ #include /* Initdata */ #include /* request_region */ #include /* udelay */ +#include #include /* kernel radio structs */ #include #include /* outb, outb_p */ @@ -25,10 +26,12 @@ MODULE_LICENSE("GPL"); MODULE_VERSION("0.0.3"); #ifndef CONFIG_RADIO_RTRACK2_PORT -#define CONFIG_RADIO_RTRACK2_PORT -1 +#define __RADIO_RTRACK2_PORT -1 +#else +#define __RADIO_RTRACK2_PORT HEX_STRING(CONFIG_RADIO_RTRACK2_PORT) #endif -static int io = CONFIG_RADIO_RTRACK2_PORT; +static int io = __RADIO_RTRACK2_PORT; static int radio_nr = -1; module_param(io, int, 0);