Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22d56fce authored by Tobias Klauser's avatar Tobias Klauser Committed by Jesper Juhl
Browse files

V4L: Storage class should be before const qualifier (sn9c102)



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 c81010bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ extern int sn9c102_write_regs(struct sn9c102_device*, const u8 valreg[][2],
   Register adresses must be < 256.
*/
#define sn9c102_write_const_regs(sn9c102_device, data...)                     \
	({ const static u8 _valreg[][2] = {data};                             \
	({ static const u8 _valreg[][2] = {data};                             \
	sn9c102_write_regs(sn9c102_device, _valreg, ARRAY_SIZE(_valreg)); })

/*****************************************************************************/