diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-06-15 16:26:42 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-20 06:21:44 -0400 |
commit | 9f2113975a7898c913c668bb709e95c27e51617b (patch) | |
tree | f35a5113a588de8a69794db0eea042a6537d8089 /drivers/media/dvb/siano/smsusb.c | |
parent | 59bf6b8e85209f4b875e319b42e8f13af7797826 (diff) |
V4L/DVB (8284): sms1xxx: fix WARNING: printk() should include KERN_ facility level
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/siano/smsusb.c')
-rw-r--r-- | drivers/media/dvb/siano/smsusb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/siano/smsusb.c b/drivers/media/dvb/siano/smsusb.c index 102c5857a23d..82f2e3e4bec6 100644 --- a/drivers/media/dvb/siano/smsusb.c +++ b/drivers/media/dvb/siano/smsusb.c | |||
@@ -241,7 +241,7 @@ void smsusb1_detectmode(void *context, int *mode) | |||
241 | 241 | ||
242 | if (!product_string) { | 242 | if (!product_string) { |
243 | product_string = "none"; | 243 | product_string = "none"; |
244 | printk("%s product string not found\n", __func__); | 244 | printk(KERN_ERR "%s product string not found\n", __func__); |
245 | } else if (strstr(product_string, "DVBH")) | 245 | } else if (strstr(product_string, "DVBH")) |
246 | *mode = 1; | 246 | *mode = 1; |
247 | else if (strstr(product_string, "BDA")) | 247 | else if (strstr(product_string, "BDA")) |
@@ -251,7 +251,7 @@ void smsusb1_detectmode(void *context, int *mode) | |||
251 | else if (strstr(product_string, "TDMB")) | 251 | else if (strstr(product_string, "TDMB")) |
252 | *mode = 2; | 252 | *mode = 2; |
253 | 253 | ||
254 | printk("%s: %d \"%s\"\n", __func__, *mode, product_string); | 254 | printk(KERN_INFO "%s: %d \"%s\"\n", __func__, *mode, product_string); |
255 | } | 255 | } |
256 | 256 | ||
257 | int smsusb1_setmode(void *context, int mode) | 257 | int smsusb1_setmode(void *context, int mode) |