Skip to content

Commit

Permalink
[PATCH] V4L/dvb: fix kernel message (print of %s from random pointer)
Browse files Browse the repository at this point in the history
Fix kernel message ( basically printk("%s", random_pointer) ).

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Hans Verkuil authored and Linus Torvalds committed Dec 1, 2005
1 parent 3535396 commit ab60e30
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions drivers/media/video/saa7115.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,17 +771,19 @@ static v4l2_std_id saa7115_get_v4lstd(struct i2c_client *client)

static void saa7115_log_status(struct i2c_client *client)
{
static const char * const audclk_freq_strs[] = {
"44.1 kHz",
"48 kHz",
"32 kHz"
};
struct saa7115_state *state = i2c_get_clientdata(client);
char *audfreq = "undefined";
int reg1e, reg1f;
int signalOk;
int vcr;

saa7115_info("Audio frequency: %s\n", audclk_freq_strs[state->audclk_freq]);
switch (state->audclk_freq) {
case V4L2_AUDCLK_32_KHZ: audfreq = "32 kHz"; break;
case V4L2_AUDCLK_441_KHZ: audfreq = "44.1 kHz"; break;
case V4L2_AUDCLK_48_KHZ: audfreq = "48 kHz"; break;
}

saa7115_info("Audio frequency: %s\n", audfreq);
if (client->name[6] == '4') {
/* status for the saa7114 */
reg1f = saa7115_read(client, 0x1f);
Expand Down

0 comments on commit ab60e30

Please sign in to comment.