Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 92383
b: refs/heads/master
c: b4333a3
h: refs/heads/master
i:
  92381: ed0c57c
  92379: 60d70ba
  92375: bab6db8
  92367: e35a9b9
  92351: 97aee39
v: v3
  • Loading branch information
Guennadi Liakhovetski authored and Mauro Carvalho Chehab committed Apr 24, 2008
1 parent e62858e commit ef10dee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 12afe3781870cad7b6bbe83a2f8c4dd9ec7bf214
refs/heads/master: b4333a3baecfeee35317c03cf08952cc04bd149a
10 changes: 5 additions & 5 deletions trunk/drivers/media/video/mt9m001.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static int bus_switch_request(struct mt9m001 *mt9m001,
int ret;
unsigned int gpio = icl->gpio;

if (gpio != NO_GPIO) {
if (gpio_is_valid(gpio)) {
/* We have a data bus switch. */
ret = gpio_request(gpio, "mt9m001");
if (ret < 0) {
Expand All @@ -174,23 +174,23 @@ static int bus_switch_request(struct mt9m001 *mt9m001,

mt9m001->switch_gpio = gpio;
#else
mt9m001->switch_gpio = NO_GPIO;
mt9m001->switch_gpio = -EINVAL;
#endif
return 0;
}

static void bus_switch_release(struct mt9m001 *mt9m001)
{
#ifdef CONFIG_MT9M001_PCA9536_SWITCH
if (mt9m001->switch_gpio != NO_GPIO)
if (gpio_is_valid(mt9m001->switch_gpio))
gpio_free(mt9m001->switch_gpio);
#endif
}

static int bus_switch_act(struct mt9m001 *mt9m001, int go8bit)
{
#ifdef CONFIG_MT9M001_PCA9536_SWITCH
if (mt9m001->switch_gpio == NO_GPIO)
if (!gpio_is_valid(mt9m001->switch_gpio))
return -ENODEV;

gpio_set_value_cansleep(mt9m001->switch_gpio, go8bit);
Expand Down Expand Up @@ -224,7 +224,7 @@ static int mt9m001_set_capture_format(struct soc_camera_device *icd,
(mt9m001->datawidth != 9 && (width_flag == IS_DATAWIDTH_9)) ||
(mt9m001->datawidth != 8 && (width_flag == IS_DATAWIDTH_8))) {
/* data width switch requested */
if (mt9m001->switch_gpio == NO_GPIO)
if (!gpio_is_valid(mt9m001->switch_gpio))
return -EINVAL;

/* Well, we actually only can do 10 or 8 bits... */
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/media/video/mt9v022.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static int bus_switch_request(struct mt9v022 *mt9v022, struct soc_camera_link *i
int ret;
unsigned int gpio = icl->gpio;

if (gpio != NO_GPIO) {
if (gpio_is_valid(gpio)) {
/* We have a data bus switch. */
ret = gpio_request(gpio, "mt9v022");
if (ret < 0) {
Expand All @@ -206,23 +206,23 @@ static int bus_switch_request(struct mt9v022 *mt9v022, struct soc_camera_link *i

mt9v022->switch_gpio = gpio;
#else
mt9v022->switch_gpio = NO_GPIO;
mt9v022->switch_gpio = -EINVAL;
#endif
return 0;
}

static void bus_switch_release(struct mt9v022 *mt9v022)
{
#ifdef CONFIG_MT9V022_PCA9536_SWITCH
if (mt9v022->switch_gpio != NO_GPIO)
if (gpio_is_valid(mt9v022->switch_gpio))
gpio_free(mt9v022->switch_gpio);
#endif
}

static int bus_switch_act(struct mt9v022 *mt9v022, int go8bit)
{
#ifdef CONFIG_MT9V022_PCA9536_SWITCH
if (mt9v022->switch_gpio == NO_GPIO)
if (!gpio_is_valid(mt9v022->switch_gpio))
return -ENODEV;

gpio_set_value_cansleep(mt9v022->switch_gpio, go8bit);
Expand Down Expand Up @@ -303,7 +303,7 @@ static int mt9v022_set_capture_format(struct soc_camera_device *icd,
(mt9v022->datawidth != 9 && (width_flag == IS_DATAWIDTH_9)) ||
(mt9v022->datawidth != 8 && (width_flag == IS_DATAWIDTH_8))) {
/* data width switch requested */
if (mt9v022->switch_gpio == NO_GPIO)
if (!gpio_is_valid(mt9v022->switch_gpio))
return -EINVAL;

/* Well, we actually only can do 10 or 8 bits... */
Expand Down

0 comments on commit ef10dee

Please sign in to comment.