diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2008-12-14 15:56:28 +0100 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2008-12-14 15:56:28 +0100 |
commit | 3bef875602189a42ca85a89ace6fc225d739512c (patch) | |
tree | 013808ffcd225444fe3794756af8711d8026a74c /linux/drivers/media/dvb | |
parent | 89634f12bf2fabd82e3043863cc01da40ec3bfc4 (diff) | |
download | mediapointer-dvb-s2-3bef875602189a42ca85a89ace6fc225d739512c.tar.gz mediapointer-dvb-s2-3bef875602189a42ca85a89ace6fc225d739512c.tar.bz2 |
CX24113: Fixed more typos
From: Patrick Boettcher <pb@linuxtv.org>
Uwe Bugla pointed out that there are some more typos in some print-statements. Fixed.
Priority: normal
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/frontends/cx24113.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/cx24113.c b/linux/drivers/media/dvb/frontends/cx24113.c index e130b228e..93f35941a 100644 --- a/linux/drivers/media/dvb/frontends/cx24113.c +++ b/linux/drivers/media/dvb/frontends/cx24113.c @@ -575,14 +575,14 @@ struct dvb_frontend *cx24113_attach(struct dvb_frontend *fe, rc = cx24113_readreg(state, 0x00); if (rc < 0) { - info("cx24113 not found.\n"); + info("CX24113 not found.\n"); goto error; } state->rev = rc; switch (rc) { case 0x43: - info("detected Cx24113 variant\n"); + info("detected CX24113 variant\n"); break; case REV_CX24113: info("sucessfully detected\n"); |