[PATCH] dvb: remove version.h dependencies
Remove all #include <linux/version.h> and all references to LINUX_VERSION_CODE and KERNEL_VERSION. Based on patch by Olaf Hering. Signed-off-by: Olaf Hering <olh@suse.de> Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
a8d995c99e
Коммит
34f7373aae
|
@ -1,5 +1,4 @@
|
|||
#include <media/saa7146_vv.h>
|
||||
#include <linux/version.h>
|
||||
|
||||
#define BOARD_CAN_DO_VBI(dev) (dev->revision != 0 && dev->vv_data->vbi_minor != -1)
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#include <linux/version.h>
|
||||
#include <media/saa7146_vv.h>
|
||||
|
||||
static u32 saa7146_i2c_func(struct i2c_adapter *adapter)
|
||||
|
@ -402,12 +401,8 @@ int saa7146_i2c_adapter_prepare(struct saa7146_dev *dev, struct i2c_adapter *i2c
|
|||
saa7146_i2c_reset(dev);
|
||||
|
||||
if( NULL != i2c_adapter ) {
|
||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
|
||||
i2c_adapter->data = dev;
|
||||
#else
|
||||
BUG_ON(!i2c_adapter->class);
|
||||
i2c_set_adapdata(i2c_adapter,dev);
|
||||
#endif
|
||||
i2c_adapter->algo = &saa7146_algo;
|
||||
i2c_adapter->algo_data = NULL;
|
||||
i2c_adapter->id = I2C_HW_SAA7146;
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include <linux/config.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/pci.h>
|
||||
|
|
|
@ -62,7 +62,6 @@
|
|||
#include <linux/uio.h>
|
||||
#include <asm/uaccess.h>
|
||||
#include <linux/crc32.h>
|
||||
#include <linux/version.h>
|
||||
|
||||
#include "dvb_demux.h"
|
||||
#include "dvb_net.h"
|
||||
|
@ -171,11 +170,7 @@ static unsigned short dvb_net_eth_type_trans(struct sk_buff *skb,
|
|||
|
||||
skb->mac.raw=skb->data;
|
||||
skb_pull(skb,dev->hard_header_len);
|
||||
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,8)
|
||||
eth = skb->mac.ethernet;
|
||||
#else
|
||||
eth = eth_hdr(skb);
|
||||
#endif
|
||||
|
||||
if (*eth->h_dest & 1) {
|
||||
if(memcmp(eth->h_dest,dev->broadcast, ETH_ALEN)==0)
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
|
||||
#include <linux/config.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/init.h>
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
*/
|
||||
#include <linux/config.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/init.h>
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include <linux/slab.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/usb.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/firmware.h>
|
||||
#include <linux/crc32.h>
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef __SAA7146__
|
||||
#define __SAA7146__
|
||||
|
||||
#include <linux/version.h> /* for version macros */
|
||||
#include <linux/module.h> /* for module-version */
|
||||
#include <linux/delay.h> /* for delay-stuff */
|
||||
#include <linux/slab.h> /* for kmalloc/kfree */
|
||||
|
@ -15,12 +14,7 @@
|
|||
#include <linux/vmalloc.h> /* for vmalloc() */
|
||||
#include <linux/mm.h> /* for vmalloc_to_page() */
|
||||
|
||||
/* ugly, but necessary to build the dvb stuff under 2.4. */
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,51)
|
||||
#include "dvb_functions.h"
|
||||
#endif
|
||||
|
||||
#define SAA7146_VERSION_CODE KERNEL_VERSION(0,5,0)
|
||||
#define SAA7146_VERSION_CODE 0x000500 /* 0.5.0 */
|
||||
|
||||
#define saa7146_write(sxy,adr,dat) writel((dat),(sxy->mem+(adr)))
|
||||
#define saa7146_read(sxy,adr) readl(sxy->mem+(adr))
|
||||
|
@ -33,13 +27,8 @@ extern unsigned int saa7146_debug;
|
|||
#define DEBUG_VARIABLE saa7146_debug
|
||||
#endif
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,51)
|
||||
#define DEBUG_PROLOG printk("%s: %s(): ",__stringify(KBUILD_BASENAME),__FUNCTION__)
|
||||
#define INFO(x) { printk("%s: ",__stringify(KBUILD_BASENAME)); printk x; }
|
||||
#else
|
||||
#define DEBUG_PROLOG printk("%s: %s(): ",__stringify(KBUILD_MODNAME),__FUNCTION__)
|
||||
#define INFO(x) { printk("%s: ",__stringify(KBUILD_MODNAME)); printk x; }
|
||||
#endif
|
||||
|
||||
#define ERR(x) { DEBUG_PROLOG; printk x; }
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче