[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: Mauro Carvalho Chehab <mchehab@s-opensource.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
Родитель
e7b3a2b221
Коммит
bbdba43f20
|
@ -17,24 +17,15 @@
|
|||
* 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-version.h"
|
||||
#include "ivtv-alsa.h"
|
||||
#include "ivtv-alsa-mixer.h"
|
||||
#include "ivtv-alsa-pcm.h"
|
||||
|
||||
#include <sound/core.h>
|
||||
#include <sound/initval.h>
|
||||
|
||||
int ivtv_alsa_debug;
|
||||
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
|
||||
|
||||
|
|
|
@ -15,21 +15,16 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/device.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/videodev2.h>
|
||||
#include "ivtv-alsa.h"
|
||||
#include "ivtv-alsa-mixer.h"
|
||||
#include "ivtv-driver.h"
|
||||
|
||||
#include <media/v4l2-device.h>
|
||||
#include <linux/videodev2.h>
|
||||
|
||||
#include <sound/core.h>
|
||||
#include <sound/control.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
|
||||
* scale with another chip's range:
|
||||
|
|
|
@ -18,15 +18,6 @@
|
|||
* 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-queue.h"
|
||||
#include "ivtv-streams.h"
|
||||
|
@ -34,6 +25,12 @@
|
|||
#include "ivtv-alsa.h"
|
||||
#include "ivtv-alsa-pcm.h"
|
||||
|
||||
#include <linux/vmalloc.h>
|
||||
|
||||
#include <sound/core.h>
|
||||
#include <sound/pcm.h>
|
||||
|
||||
|
||||
static unsigned int pcm_debug;
|
||||
module_param(pcm_debug, int, 0644);
|
||||
MODULE_PARM_DESC(pcm_debug, "enable debug messages for pcm");
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
#ifndef IVTV_DRIVER_H
|
||||
#define IVTV_DRIVER_H
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
/* Internal header for ivtv project:
|
||||
* Driver for the cx23415/6 chip.
|
||||
* Author: Kevin Thayer (nufan_wfk at yahoo.com)
|
||||
|
@ -36,38 +38,39 @@
|
|||
* using information provided by Jiun-Kuei Jung @ AVerMedia.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <asm/byteorder.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/pci.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/i2c-algo-bit.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/unistd.h>
|
||||
#include <linux/pagemap.h>
|
||||
#include <linux/scatterlist.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/module.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/pagemap.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/scatterlist.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/uaccess.h>
|
||||
#include <asm/byteorder.h>
|
||||
#include <linux/unistd.h>
|
||||
|
||||
#include <linux/dvb/video.h>
|
||||
#include <linux/dvb/audio.h>
|
||||
#include <media/drv-intf/cx2341x.h>
|
||||
#include <media/i2c/ir-kbd-i2c.h>
|
||||
#include <media/tuner.h>
|
||||
#include <media/v4l2-common.h>
|
||||
#include <media/v4l2-ioctl.h>
|
||||
#include <media/v4l2-ctrls.h>
|
||||
#include <media/v4l2-device.h>
|
||||
#include <media/v4l2-fh.h>
|
||||
#include <media/tuner.h>
|
||||
#include <media/drv-intf/cx2341x.h>
|
||||
#include <media/i2c/ir-kbd-i2c.h>
|
||||
|
||||
#include <linux/ivtv.h>
|
||||
#include <media/v4l2-ioctl.h>
|
||||
|
||||
/* Memory layout */
|
||||
#define IVTV_ENCODER_OFFSET 0x00000000
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "ivtv-driver.h"
|
||||
#include "ivtv-mailbox.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
/* Firmware mailbox flags*/
|
||||
#define IVTV_MBOX_FIRMWARE_DONE 0x00000004
|
||||
#define IVTV_MBOX_DRIVER_DONE 0x00000002
|
||||
|
|
|
@ -38,18 +38,6 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/fb.h>
|
||||
#include <linux/ivtvfb.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#ifdef CONFIG_X86_64
|
||||
#include <asm/pat.h>
|
||||
#endif
|
||||
|
||||
#include "ivtv-driver.h"
|
||||
#include "ivtv-cards.h"
|
||||
#include "ivtv-i2c.h"
|
||||
|
@ -57,6 +45,13 @@
|
|||
#include "ivtv-mailbox.h"
|
||||
#include "ivtv-firmware.h"
|
||||
|
||||
#include <linux/fb.h>
|
||||
#include <linux/ivtvfb.h>
|
||||
|
||||
#ifdef CONFIG_X86_64
|
||||
#include <asm/pat.h>
|
||||
#endif
|
||||
|
||||
/* card parameters */
|
||||
static int ivtvfb_card_id = -1;
|
||||
static int ivtvfb_debug = 0;
|
||||
|
|
Загрузка…
Ссылка в новой задаче