From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Modify radio-terratec to use HEX_STRING(CONFIG_RADIO_TERRATEC_PORT) so that the correct IO port value is used. Fixes the IO port value that is used since this is hex: CONFIG_RADIO_TERRATEC_PORT=590 but it was being interpreted as decimal instead of hex. Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> --- drivers/media/radio/radio-terratec.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- linux-next-20110707.orig/drivers/media/radio/radio-terratec.c +++ linux-next-20110707/drivers/media/radio/radio-terratec.c @@ -27,6 +27,7 @@ #include <linux/module.h> /* Modules */ #include <linux/init.h> /* Initdata */ #include <linux/ioport.h> /* request_region */ +#include <linux/stringify.h> #include <linux/videodev2.h> /* kernel radio structs */ #include <linux/mutex.h> #include <linux/io.h> /* outb, outb_p */ @@ -39,10 +40,12 @@ MODULE_LICENSE("GPL"); MODULE_VERSION("0.0.3"); #ifndef CONFIG_RADIO_TERRATEC_PORT -#define CONFIG_RADIO_TERRATEC_PORT 0x590 +#define __RADIO_TERRATEC_PORT 0x590 +#else +#define __RADIO_TERRATEC_PORT HEX_STRING(CONFIG_RADIO_TERRATEC_PORT) #endif -static int io = CONFIG_RADIO_TERRATEC_PORT; +static int io = __RADIO_TERRATEC_PORT; static int radio_nr = -1; module_param(io, int, 0); -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html