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

Commit 922539a0 authored by Jean Delvare's avatar Jean Delvare Committed by Jean Delvare
Browse files

i2c: normal_i2c can be made const (rtc drivers)

parent bfb6df24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
#define DRV_VERSION "0.3"

/* Addresses to scan: none. This chip cannot be detected. */
static unsigned short normal_i2c[] = { I2C_CLIENT_END };
static const unsigned short normal_i2c[] = { I2C_CLIENT_END };

/* Insmod parameters */
I2C_CLIENT_INSMOD;
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@
/* i2c configuration */
#define ISL1208_I2C_ADDR 0xde

static unsigned short normal_i2c[] = {
static const unsigned short normal_i2c[] = {
	ISL1208_I2C_ADDR>>1, I2C_CLIENT_END
};
I2C_CLIENT_INSMOD; /* defines addr_data */
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@

#define MAX6900_I2C_ADDR		0xa0

static unsigned short normal_i2c[] = {
static const unsigned short normal_i2c[] = {
	MAX6900_I2C_ADDR >> 1,
	I2C_CLIENT_END
};
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
 * located at 0x51 will pass the validation routine due to
 * the way the registers are implemented.
 */
static unsigned short normal_i2c[] = { I2C_CLIENT_END };
static const unsigned short normal_i2c[] = { I2C_CLIENT_END };

/* Module parameters */
I2C_CLIENT_INSMOD;
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ struct pcf8583 {
#define CTRL_ALARM	0x02
#define CTRL_TIMER	0x01

static unsigned short normal_i2c[] = { 0x50, I2C_CLIENT_END };
static const unsigned short normal_i2c[] = { 0x50, I2C_CLIENT_END };

/* Module parameters */
I2C_CLIENT_INSMOD;
Loading