Commit bac79f37 authored by Erik Andrén's avatar Erik Andrén Committed by Mauro Carvalho Chehab

V4L/DVB (10006): gspca - m5602: Align some defines

Signed-off-by: default avatarErik Andrén <erik.andren@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 32500701
...@@ -69,7 +69,7 @@ sensor_found: ...@@ -69,7 +69,7 @@ sensor_found:
} }
int s5k83a_read_sensor(struct sd *sd, const u8 address, int s5k83a_read_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len) u8 *i2c_data, const u8 len)
{ {
int err, i; int err, i;
...@@ -106,11 +106,11 @@ int s5k83a_read_sensor(struct sd *sd, const u8 address, ...@@ -106,11 +106,11 @@ int s5k83a_read_sensor(struct sd *sd, const u8 address,
} }
out: out:
return (err < 0) ? err : 0; return err;
} }
int s5k83a_write_sensor(struct sd *sd, const u8 address, int s5k83a_write_sensor(struct sd *sd, const u8 address,
u8 *i2c_data, const u8 len) u8 *i2c_data, const u8 len)
{ {
int err, i; int err, i;
u8 *p; u8 *p;
......
...@@ -22,15 +22,15 @@ ...@@ -22,15 +22,15 @@
#include "m5602_sensor.h" #include "m5602_sensor.h"
#define S5K83A_FLIP 0x01 #define S5K83A_FLIP 0x01
#define S5K83A_HFLIP_TUNE 0x03 #define S5K83A_HFLIP_TUNE 0x03
#define S5K83A_VFLIP_TUNE 0x05 #define S5K83A_VFLIP_TUNE 0x05
#define S5K83A_WHITENESS 0x0a #define S5K83A_WHITENESS 0x0a
#define S5K83A_GAIN 0x18 #define S5K83A_GAIN 0x18
#define S5K83A_BRIGHTNESS 0x1b #define S5K83A_BRIGHTNESS 0x1b
#define S5K83A_PAGE_MAP 0xec #define S5K83A_PAGE_MAP 0xec
#define S5K83A_DEFAULT_BRIGHTNESS 0x71 #define S5K83A_DEFAULT_BRIGHTNESS 0x71
#define S5K83A_DEFAULT_WHITENESS 0x7e #define S5K83A_DEFAULT_WHITENESS 0x7e
#define S5K83A_DEFAULT_GAIN 0x00 #define S5K83A_DEFAULT_GAIN 0x00
#define S5K83A_MAXIMUM_GAIN 0x3c #define S5K83A_MAXIMUM_GAIN 0x3c
#define S5K83A_FLIP_MASK 0x10 #define S5K83A_FLIP_MASK 0x10
......
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