ChangeSet 1.2231.1.206, 2005/03/28 20:13:37-08:00, [EMAIL PROTECTED]
[PATCH] dvb: dib3000: corrected device naming
corrected device naming (Patrick Boettcher)
Signed-off-by: Johannes Stezenbach <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
Kconfig | 4 ++--
dib3000-common.c | 2 +-
dib3000-common.h | 8 ++++----
dib3000.h | 2 +-
dib3000mb.c | 6 +++---
dib3000mc.c | 10 +++++-----
dib3000mc_priv.h | 2 +-
7 files changed, 17 insertions(+), 17 deletions(-)
diff -Nru a/drivers/media/dvb/frontends/Kconfig
b/drivers/media/dvb/frontends/Kconfig
--- a/drivers/media/dvb/frontends/Kconfig 2005-03-28 21:53:13 -08:00
+++ b/drivers/media/dvb/frontends/Kconfig 2005-03-28 21:53:13 -08:00
@@ -108,14 +108,14 @@
A DVB-T tuner module. Say Y when you want to support this frontend.
config DVB_DIB3000MB
- tristate "DiBcom 3000-MB"
+ tristate "DiBcom 3000M-B"
depends on DVB_CORE
help
A DVB-T tuner module. Designed for mobile usage. Say Y when you want
to support this frontend.
config DVB_DIB3000MC
- tristate "DiBcom 3000-MC/P"
+ tristate "DiBcom 3000P/M-C"
depends on DVB_CORE
help
A DVB-T tuner module. Designed for mobile usage. Say Y when you want
diff -Nru a/drivers/media/dvb/frontends/dib3000-common.c
b/drivers/media/dvb/frontends/dib3000-common.c
--- a/drivers/media/dvb/frontends/dib3000-common.c 2005-03-28 21:53:13
-08:00
+++ b/drivers/media/dvb/frontends/dib3000-common.c 2005-03-28 21:53:13
-08:00
@@ -73,7 +73,7 @@
};
MODULE_AUTHOR("Patrick Boettcher <[EMAIL PROTECTED]");
-MODULE_DESCRIPTION("Common functions for the dib3000mb/dib3000mc dvb frontend
drivers");
+MODULE_DESCRIPTION("Common functions for the dib3000mb/dib3000mc dvb-frontend
drivers");
MODULE_LICENSE("GPL");
EXPORT_SYMBOL(dib3000_seq);
diff -Nru a/drivers/media/dvb/frontends/dib3000-common.h
b/drivers/media/dvb/frontends/dib3000-common.h
--- a/drivers/media/dvb/frontends/dib3000-common.h 2005-03-28 21:53:13
-08:00
+++ b/drivers/media/dvb/frontends/dib3000-common.h 2005-03-28 21:53:13
-08:00
@@ -1,6 +1,6 @@
/*
* .h-files for the common use of the frontend drivers made by DiBcom
- * DiBcom 3000-MB/MC/P
+ * DiBcom 3000M-B/C, 3000P
*
* DiBcom (http://www.dibcom.fr/)
*
@@ -30,9 +30,9 @@
#include "dib3000.h"
/* info and err, taken from usb.h, if there is anything available like by
default. */
-#define err(format, arg...) printk(KERN_ERR "dib3000mX: " format "\n" , ## arg)
-#define info(format, arg...) printk(KERN_INFO "dib3000mX: " format "\n" , ##
arg)
-#define warn(format, arg...) printk(KERN_WARNING "dib3000mX: " format "\n" ,
## arg)
+#define err(format, arg...) printk(KERN_ERR "dib3000: " format "\n" , ##
arg)
+#define info(format, arg...) printk(KERN_INFO "dib3000: " format "\n" , ##
arg)
+#define warn(format, arg...) printk(KERN_WARNING "dib3000: " format "\n" , ##
arg)
/* frontend state */
struct dib3000_state {
diff -Nru a/drivers/media/dvb/frontends/dib3000.h
b/drivers/media/dvb/frontends/dib3000.h
--- a/drivers/media/dvb/frontends/dib3000.h 2005-03-28 21:53:13 -08:00
+++ b/drivers/media/dvb/frontends/dib3000.h 2005-03-28 21:53:13 -08:00
@@ -1,6 +1,6 @@
/*
* public header file of the frontend drivers for mobile DVB-T demodulators
- * DiBcom 3000-MB and DiBcom 3000-MC/P (http://www.dibcom.fr/)
+ * DiBcom 3000M-B and DiBcom 3000P/M-C (http://www.dibcom.fr/)
*
* Copyright (C) 2004-5 Patrick Boettcher ([EMAIL PROTECTED])
*
diff -Nru a/drivers/media/dvb/frontends/dib3000mb.c
b/drivers/media/dvb/frontends/dib3000mb.c
--- a/drivers/media/dvb/frontends/dib3000mb.c 2005-03-28 21:53:13 -08:00
+++ b/drivers/media/dvb/frontends/dib3000mb.c 2005-03-28 21:53:13 -08:00
@@ -1,5 +1,5 @@
/*
- * Frontend driver for mobile DVB-T demodulator DiBcom 3000-MB
+ * Frontend driver for mobile DVB-T demodulator DiBcom 3000M-B
* DiBcom (http://www.dibcom.fr/)
*
* Copyright (C) 2004-5 Patrick Boettcher ([EMAIL PROTECTED])
@@ -35,7 +35,7 @@
/* Version information */
#define DRIVER_VERSION "0.1"
-#define DRIVER_DESC "DiBcom 3000M-B DVB-T demodulator driver"
+#define DRIVER_DESC "DiBcom 3000M-B DVB-T demodulator"
#define DRIVER_AUTHOR "Patrick Boettcher, [EMAIL PROTECTED]"
#ifdef CONFIG_DVB_DIBCOM_DEBUG
@@ -745,7 +745,7 @@
static struct dvb_frontend_ops dib3000mb_ops = {
.info = {
- .name = "DiBcom 3000-MB DVB-T",
+ .name = "DiBcom 3000M-B DVB-T",
.type = FE_OFDM,
.frequency_min = 44250000,
.frequency_max = 867250000,
diff -Nru a/drivers/media/dvb/frontends/dib3000mc.c
b/drivers/media/dvb/frontends/dib3000mc.c
--- a/drivers/media/dvb/frontends/dib3000mc.c 2005-03-28 21:53:13 -08:00
+++ b/drivers/media/dvb/frontends/dib3000mc.c 2005-03-28 21:53:13 -08:00
@@ -1,5 +1,5 @@
/*
- * Frontend driver for mobile DVB-T demodulator DiBcom 3000-MC/P
+ * Frontend driver for mobile DVB-T demodulator DiBcom 3000P/M-C
* DiBcom (http://www.dibcom.fr/)
*
* Copyright (C) 2004-5 Patrick Boettcher ([EMAIL PROTECTED])
@@ -34,7 +34,7 @@
/* Version information */
#define DRIVER_VERSION "0.1"
-#define DRIVER_DESC "DiBcom 3000M-C DVB-T demodulator driver"
+#define DRIVER_DESC "DiBcom 3000M-C DVB-T demodulator"
#define DRIVER_AUTHOR "Patrick Boettcher, [EMAIL PROTECTED]"
#ifdef CONFIG_DVB_DIBCOM_DEBUG
@@ -865,10 +865,10 @@
switch (devid) {
case DIB3000MC_DEVICE_ID:
- info("Found a DiBcom 3000-MC, interesting...");
+ info("Found a DiBcom 3000M-C, interesting...");
break;
case DIB3000P_DEVICE_ID:
- info("Found a DiBcom 3000-P.");
+ info("Found a DiBcom 3000P.");
break;
}
@@ -895,7 +895,7 @@
static struct dvb_frontend_ops dib3000mc_ops = {
.info = {
- .name = "DiBcom 3000-MC/P DVB-T",
+ .name = "DiBcom 3000P/M-C DVB-T",
.type = FE_OFDM,
.frequency_min = 44250000,
.frequency_max = 867250000,
diff -Nru a/drivers/media/dvb/frontends/dib3000mc_priv.h
b/drivers/media/dvb/frontends/dib3000mc_priv.h
--- a/drivers/media/dvb/frontends/dib3000mc_priv.h 2005-03-28 21:53:13
-08:00
+++ b/drivers/media/dvb/frontends/dib3000mc_priv.h 2005-03-28 21:53:13
-08:00
@@ -320,7 +320,7 @@
* pidfilter
* it is not a hardware pidfilter but a filter which drops all pids
* except the ones set. When connected to USB1.1 bandwidth this is important.
- * DiB3000-MC/P can filter up to 32 PIDs
+ * DiB3000P/M-C can filter up to 32 PIDs
*/
#define DIB3000MC_REG_FIRST_PID ( 212)
#define DIB3000MC_NUM_PIDS ( 32)
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html