diff options
author | Holger Waechtler <devnull@localhost> | 2003-01-21 19:30:40 +0000 |
---|---|---|
committer | Holger Waechtler <devnull@localhost> | 2003-01-21 19:30:40 +0000 |
commit | a59dd5cb636e1e8e352f5693eb672315a67f592e (patch) | |
tree | a7d06d418fb5396adac667af83cd8afab231d06d /linux/drivers/media/dvb | |
parent | 3a660a9f0cb5503d51be7280634ea51f650ec6ca (diff) | |
download | mediapointer-dvb-s2-a59dd5cb636e1e8e352f5693eb672315a67f592e.tar.gz mediapointer-dvb-s2-a59dd5cb636e1e8e352f5693eb672315a67f592e.tar.bz2 |
set __devexit and __devexit_p() flags
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/ttpci-budget/budget.c | 2 | ||||
-rw-r--r-- | linux/drivers/media/dvb/ttpci-budget/budget.h | 10 |
2 files changed, 1 insertions, 11 deletions
diff --git a/linux/drivers/media/dvb/ttpci-budget/budget.c b/linux/drivers/media/dvb/ttpci-budget/budget.c index 505999dd0..b632e1901 100644 --- a/linux/drivers/media/dvb/ttpci-budget/budget.c +++ b/linux/drivers/media/dvb/ttpci-budget/budget.c @@ -47,8 +47,8 @@ struct pci_device_id pci_tbl[] = { MAKE_EXTENSION_PCI(ttbs, 0x13c2, 0x1003), MAKE_EXTENSION_PCI(ttbc, 0x13c2, 0x1004), MAKE_EXTENSION_PCI(ttbt, 0x13c2, 0x1005), - MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100f), /* TT_BUDGET_CI without CI (connector not soldered in) */ MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100c), + MAKE_EXTENSION_PCI(ttbci, 0x13c2, 0x100f), MAKE_EXTENSION_PCI(satel, 0x13c2, 0x1013), { .vendor = 0, diff --git a/linux/drivers/media/dvb/ttpci-budget/budget.h b/linux/drivers/media/dvb/ttpci-budget/budget.h index ab175b8e7..4a8dd3dd1 100644 --- a/linux/drivers/media/dvb/ttpci-budget/budget.h +++ b/linux/drivers/media/dvb/ttpci-budget/budget.h @@ -11,16 +11,6 @@ #include "dvb_net.h" #include "saa7146.h" -#if 1 -#define DEBUG_PROLOG printk("%s: %s(): ",__stringify(KBUILD_MODNAME),__FUNCTION__) -#define DEB_S(x) if (0!=(budget_debug&0x01)) { DEBUG_PROLOG; printk x; } /* simple debug messages */ -#define DEB_D(x) if (0!=(budget_debug&0x02)) { DEBUG_PROLOG; printk x; } /* more detailed debug messages */ -#define DEB_EE(x) if (0!=(budget_debug&0x04)) { DEBUG_PROLOG; printk x; } /* print enter and exit of functions */ -#else -#define DEB_S(x) -#define DEB_D(x) -#define DEB_EE(x) -#endif extern int budget_debug; |