diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-02-22 14:46:56 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-02-26 13:10:01 +0100 |
commit | 5e022d1aa0be77d749939a56f751f62ed8ee4d2b (patch) | |
tree | 5a7a709049e7c38ed3b0e76c198ffccca0bc8873 /drivers/media/usb/siano | |
parent | [media] siano: add support for the media controller at USB driver (diff) | |
download | linux-5e022d1aa0be77d749939a56f751f62ed8ee4d2b.tar.xz linux-5e022d1aa0be77d749939a56f751f62ed8ee4d2b.zip |
[media] siano: use pr_* print functions
Instead of defining its own set of printk functions, let's
use the common Kernel debug logic provided by pr_foo functions.
As a first step, let's just define the existing macros as the
Kernel ones.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/usb/siano')
-rw-r--r-- | drivers/media/usb/siano/smsusb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/usb/siano/smsusb.c b/drivers/media/usb/siano/smsusb.c index 4b6db7557e33..426455118d02 100644 --- a/drivers/media/usb/siano/smsusb.c +++ b/drivers/media/usb/siano/smsusb.c @@ -19,6 +19,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ****************************************************************/ +#include "smscoreapi.h" + #include <linux/kernel.h> #include <linux/init.h> #include <linux/usb.h> @@ -26,7 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <linux/slab.h> #include <linux/module.h> -#include "smscoreapi.h" #include "sms-cards.h" #include "smsendian.h" |