Commit bbdba43f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] ivtv: prepare to convert to pr_foo()

Move the pr_fmt() macro to ivtv_driver.h and ensure that it
will be the first file to be included on all ivtv files.

While here, put the includes inside ivtv-driver.h on
alphabetic order.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
Acked-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent e7b3a2b2
...@@ -17,24 +17,15 @@ ...@@ -17,24 +17,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/spinlock.h>
#include <media/v4l2-device.h>
#include <sound/core.h>
#include <sound/initval.h>
#include "ivtv-driver.h" #include "ivtv-driver.h"
#include "ivtv-version.h" #include "ivtv-version.h"
#include "ivtv-alsa.h" #include "ivtv-alsa.h"
#include "ivtv-alsa-mixer.h" #include "ivtv-alsa-mixer.h"
#include "ivtv-alsa-pcm.h" #include "ivtv-alsa-pcm.h"
#include <sound/core.h>
#include <sound/initval.h>
int ivtv_alsa_debug; int ivtv_alsa_debug;
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
......
...@@ -15,21 +15,16 @@ ...@@ -15,21 +15,16 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#include <linux/init.h> #include "ivtv-alsa.h"
#include <linux/kernel.h> #include "ivtv-alsa-mixer.h"
#include <linux/device.h> #include "ivtv-driver.h"
#include <linux/spinlock.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h> #include <linux/videodev2.h>
#include <sound/core.h> #include <sound/core.h>
#include <sound/control.h> #include <sound/control.h>
#include <sound/tlv.h> #include <sound/tlv.h>
#include "ivtv-alsa.h"
#include "ivtv-driver.h"
/* /*
* Note the cx25840-core volume scale is funny, due to the alignment of the * Note the cx25840-core volume scale is funny, due to the alignment of the
* scale with another chip's range: * scale with another chip's range:
......
...@@ -18,15 +18,6 @@ ...@@ -18,15 +18,6 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/vmalloc.h>
#include <media/v4l2-device.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include "ivtv-driver.h" #include "ivtv-driver.h"
#include "ivtv-queue.h" #include "ivtv-queue.h"
#include "ivtv-streams.h" #include "ivtv-streams.h"
...@@ -34,6 +25,12 @@ ...@@ -34,6 +25,12 @@
#include "ivtv-alsa.h" #include "ivtv-alsa.h"
#include "ivtv-alsa-pcm.h" #include "ivtv-alsa-pcm.h"
#include <linux/vmalloc.h>
#include <sound/core.h>
#include <sound/pcm.h>
static unsigned int pcm_debug; static unsigned int pcm_debug;
module_param(pcm_debug, int, 0644); module_param(pcm_debug, int, 0644);
MODULE_PARM_DESC(pcm_debug, "enable debug messages for pcm"); MODULE_PARM_DESC(pcm_debug, "enable debug messages for pcm");
......
...@@ -22,6 +22,8 @@ ...@@ -22,6 +22,8 @@
#ifndef IVTV_DRIVER_H #ifndef IVTV_DRIVER_H
#define IVTV_DRIVER_H #define IVTV_DRIVER_H
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
/* Internal header for ivtv project: /* Internal header for ivtv project:
* Driver for the cx23415/6 chip. * Driver for the cx23415/6 chip.
* Author: Kevin Thayer (nufan_wfk at yahoo.com) * Author: Kevin Thayer (nufan_wfk at yahoo.com)
...@@ -36,38 +38,39 @@ ...@@ -36,38 +38,39 @@
* using information provided by Jiun-Kuei Jung @ AVerMedia. * using information provided by Jiun-Kuei Jung @ AVerMedia.
*/ */
#include <linux/module.h> #include <asm/byteorder.h>
#include <linux/init.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/sched.h> #include <linux/device.h>
#include <linux/dvb/audio.h>
#include <linux/dvb/video.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/pci.h>
#include <linux/interrupt.h>
#include <linux/spinlock.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/i2c-algo-bit.h> #include <linux/i2c-algo-bit.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ivtv.h>
#include <linux/kernel.h>
#include <linux/kthread.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/unistd.h> #include <linux/module.h>
#include <linux/mutex.h>
#include <linux/pagemap.h> #include <linux/pagemap.h>
#include <linux/pci.h>
#include <linux/scatterlist.h> #include <linux/scatterlist.h>
#include <linux/kthread.h> #include <linux/sched.h>
#include <linux/mutex.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/uaccess.h> #include <linux/uaccess.h>
#include <asm/byteorder.h> #include <linux/unistd.h>
#include <linux/dvb/video.h> #include <media/drv-intf/cx2341x.h>
#include <linux/dvb/audio.h> #include <media/i2c/ir-kbd-i2c.h>
#include <media/tuner.h>
#include <media/v4l2-common.h> #include <media/v4l2-common.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h> #include <media/v4l2-ctrls.h>
#include <media/v4l2-device.h> #include <media/v4l2-device.h>
#include <media/v4l2-fh.h> #include <media/v4l2-fh.h>
#include <media/tuner.h> #include <media/v4l2-ioctl.h>
#include <media/drv-intf/cx2341x.h>
#include <media/i2c/ir-kbd-i2c.h>
#include <linux/ivtv.h>
/* Memory layout */ /* Memory layout */
#define IVTV_ENCODER_OFFSET 0x00000000 #define IVTV_ENCODER_OFFSET 0x00000000
......
...@@ -19,11 +19,11 @@ ...@@ -19,11 +19,11 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include <stdarg.h>
#include "ivtv-driver.h" #include "ivtv-driver.h"
#include "ivtv-mailbox.h" #include "ivtv-mailbox.h"
#include <stdarg.h>
/* Firmware mailbox flags*/ /* Firmware mailbox flags*/
#define IVTV_MBOX_FIRMWARE_DONE 0x00000004 #define IVTV_MBOX_FIRMWARE_DONE 0x00000004
#define IVTV_MBOX_DRIVER_DONE 0x00000002 #define IVTV_MBOX_DRIVER_DONE 0x00000002
......
...@@ -38,25 +38,20 @@ ...@@ -38,25 +38,20 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include "ivtv-driver.h"
#include "ivtv-cards.h"
#include "ivtv-i2c.h"
#include "ivtv-udma.h"
#include "ivtv-mailbox.h"
#include "ivtv-firmware.h"
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/fb.h> #include <linux/fb.h>
#include <linux/ivtvfb.h> #include <linux/ivtvfb.h>
#include <linux/slab.h>
#ifdef CONFIG_X86_64 #ifdef CONFIG_X86_64
#include <asm/pat.h> #include <asm/pat.h>
#endif #endif
#include "ivtv-driver.h"
#include "ivtv-cards.h"
#include "ivtv-i2c.h"
#include "ivtv-udma.h"
#include "ivtv-mailbox.h"
#include "ivtv-firmware.h"
/* card parameters */ /* card parameters */
static int ivtvfb_card_id = -1; static int ivtvfb_card_id = -1;
static int ivtvfb_debug = 0; static int ivtvfb_debug = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment