Re: [patch] fix weird array index in zl10036.c

2009-12-29 Thread Matthias Schwarzott
On Montag, 28. Dezember 2009, Dan Carpenter wrote: I was initially concerned about the weird array index (the 2 bumps into the next row of the array). Matthias Schwarzott look at the datasheet and it turns out it should be zl10036_init_tab[1][0] |= 0x01; Signed-off-by: Dan Carpenter

[patch] fix weird array index in zl10036.c

2009-12-28 Thread Dan Carpenter
I was initially concerned about the weird array index (the 2 bumps into the next row of the array). Matthias Schwarzott look at the datasheet and it turns out it should be zl10036_init_tab[1][0] |= 0x01; Signed-off-by: Dan Carpenter erro...@gmail.com ---

weird array index in zl10036.c

2009-12-27 Thread Dan Carpenter
drivers/media/dvb/frontends/zl10036.c 397 /* could also be one block from reg 2 to 13 and additional 10/11 */ 398 u8 zl10036_init_tab[][2] = { 399 { 0x04, 0x00 }, /* 2/3: div=0x400 - arbitrary value */ 400 { 0x8b,

Re: weird array index in zl10036.c

2009-12-27 Thread Matthias Schwarzott
On Sonntag, 27. Dezember 2009, Dan Carpenter wrote: drivers/media/dvb/frontends/zl10036.c 397 /* could also be one block from reg 2 to 13 and additional 10/11 */ 398 u8 zl10036_init_tab[][2] = { 399 { 0x04, 0x00 }, /* 2/3: div=0x400 -