Commit cbfa6f2a authored by Tobias Klauser's avatar Tobias Klauser Committed by Jesper Juhl

DVB: Storage class should be before const qualifier

The C99 specification states in section 6.11.5:

The placement of a storage-class specifier other than at the
beginning of the declaration specifiers in a declaration is an
obsolescent feature.
Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
parent b1d18dc0
...@@ -91,7 +91,7 @@ static int or51132_writebuf(struct or51132_state *state, const u8 *buf, int len) ...@@ -91,7 +91,7 @@ static int or51132_writebuf(struct or51132_state *state, const u8 *buf, int len)
Less code and more efficient that loading a buffer on the stack with Less code and more efficient that loading a buffer on the stack with
the bytes to send and then calling or51132_writebuf() on that. */ the bytes to send and then calling or51132_writebuf() on that. */
#define or51132_writebytes(state, data...) \ #define or51132_writebytes(state, data...) \
({ const static u8 _data[] = {data}; \ ({ static const u8 _data[] = {data}; \
or51132_writebuf(state, _data, sizeof(_data)); }) or51132_writebuf(state, _data, sizeof(_data)); })
/* Read data from demod into buffer. Returns 0 on success. */ /* Read data from demod into buffer. Returns 0 on success. */
...@@ -132,7 +132,7 @@ static int or51132_readreg(struct or51132_state *state, u8 reg) ...@@ -132,7 +132,7 @@ static int or51132_readreg(struct or51132_state *state, u8 reg)
static int or51132_load_firmware (struct dvb_frontend* fe, const struct firmware *fw) static int or51132_load_firmware (struct dvb_frontend* fe, const struct firmware *fw)
{ {
struct or51132_state* state = fe->demodulator_priv; struct or51132_state* state = fe->demodulator_priv;
const static u8 run_buf[] = {0x7F,0x01}; static const u8 run_buf[] = {0x7F,0x01};
u8 rec_buf[8]; u8 rec_buf[8];
u32 firmwareAsize, firmwareBsize; u32 firmwareAsize, firmwareBsize;
int i,ret; int i,ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment