diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-02-22 11:04:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-02-26 09:10:02 -0300 |
commit | 5ed0a2c7eca3265e6df3e9eebedfc2db3916dcd4 (patch) | |
tree | 1384a26bb11cc3521705dc760012fe279a055d1b /drivers/media/common/siano/sms-cards.c | |
parent | 535bd1e96e6ea5eedd1171f0d4a7750597bb4cbf (diff) |
[media] siano: replace sms_err by pr_err
Originally, sms_err() would be also displaying the line where
the error occurs, but the messages are clear enough. Also,
the function is always printed. So, no need for it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/common/siano/sms-cards.c')
-rw-r--r-- | drivers/media/common/siano/sms-cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/siano/sms-cards.c b/drivers/media/common/siano/sms-cards.c index 82c7a1289f05..9c7a9452c04c 100644 --- a/drivers/media/common/siano/sms-cards.c +++ b/drivers/media/common/siano/sms-cards.c @@ -232,7 +232,7 @@ int sms_board_event(struct smscore_device_t *coredev, break; /* BOARD_EVENT_MULTIPLEX_ERRORS */ default: - sms_err("Unknown SMS board event"); + pr_err("Unknown SMS board event\n"); break; } return 0; |