aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/dvb/siano/smsdvb.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-06-19 22:07:23 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-07-20 07:22:48 -0300
commiteb250942fe3cf2a129ab55d65161bc66b7009853 (patch)
treedd0cf00e7cd8f69b42bbc63b3ac59a3208e112d1 /drivers/media/dvb/siano/smsdvb.c
parentf14d56a99bddb779f6f7ec028bcd9d142536589e (diff)
V4L/DVB (8296): sms1xxx: always show error messages
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/siano/smsdvb.c')
-rw-r--r--drivers/media/dvb/siano/smsdvb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/siano/smsdvb.c b/drivers/media/dvb/siano/smsdvb.c
index a54e9c77edd..f9a6ce0441f 100644
--- a/drivers/media/dvb/siano/smsdvb.c
+++ b/drivers/media/dvb/siano/smsdvb.c
@@ -329,7 +329,7 @@ int smsdvb_hotplug(struct smscore_device_t *coredev,
client = kzalloc(sizeof(struct smsdvb_client_t), GFP_KERNEL);
if (!client) {
- sms_info("kmalloc() failed");
+ sms_err("kmalloc() failed");
return -ENOMEM;
}
@@ -385,7 +385,7 @@ int smsdvb_hotplug(struct smscore_device_t *coredev,
rc = smscore_register_client(coredev, &params, &client->smsclient);
if (rc < 0) {
- sms_info("smscore_register_client() failed %d", rc);
+ sms_err("smscore_register_client() failed %d", rc);
goto client_error;
}