]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Merge remote-tracking branch 'v4l-dvb/master'
authorStephen Rothwell <sfr@canb.auug.org.au>
Fri, 29 Jul 2011 03:08:58 +0000 (13:08 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 29 Jul 2011 03:12:44 +0000 (13:12 +1000)
Conflicts:
arch/arm/mach-omap2/board-rx51-peripherals.c
drivers/staging/tm6000/tm6000-alsa.c

15 files changed:
1  2 
Documentation/DocBook/media/v4l/io.xml
Documentation/feature-removal-schedule.txt
arch/arm/mach-omap2/board-rx51-peripherals.c
arch/arm/mach-shmobile/board-ap4evb.c
arch/arm/mach-shmobile/board-mackerel.c
arch/sh/boards/mach-ap325rxa/setup.c
drivers/media/rc/ite-cir.c
drivers/media/video/hdpvr/hdpvr-core.c
drivers/media/video/omap24xxcam.c
drivers/media/video/uvc/uvc_ctrl.c
drivers/media/video/uvc/uvc_v4l2.c
drivers/media/video/videobuf2-memops.c
drivers/staging/cxd2099/cxd2099.c
drivers/staging/tm6000/tm6000-alsa.c
kernel/compat.c

index cc503aa89c5e3685b6cc5901a2329a67c6926d99,17e5685ae0cd1bd6720bd2307b058f589a4e92d6..5a886cd2c598c408f3e007e01a5f5e2b0ae9ca94
@@@ -414,17 -358,17 +414,21 @@@ static struct omap2_hsmmc_info mmc[] __
        {}      /* Terminator */
  };
  
 -static struct regulator_consumer_supply rx51_vmmc1_supply =
 -      REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");
 +static struct regulator_consumer_supply rx51_vmmc1_supply[] = {
 +      REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
 +};
  
 -static struct regulator_consumer_supply rx51_vaux2_supply =
 -      REGULATOR_SUPPLY("vdds_csib", "omap3isp");
++static struct regulator_consumer_supply rx51_vaux2_supply[] = {
++      REGULATOR_SUPPLY("vdds_csib", "omap3isp"),
++};
 -static struct regulator_consumer_supply rx51_vaux3_supply =
 -      REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");
 +static struct regulator_consumer_supply rx51_vaux3_supply[] = {
 +      REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"),
 +};
  
 -static struct regulator_consumer_supply rx51_vsim_supply =
 -      REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1");
 +static struct regulator_consumer_supply rx51_vsim_supply[] = {
 +      REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.1"),
 +};
  
  static struct regulator_consumer_supply rx51_vmmc2_supplies[] = {
        /* tlv320aic3x analog supplies */
@@@ -479,6 -427,8 +483,8 @@@ static struct regulator_init_data rx51_
                .valid_ops_mask         = REGULATOR_CHANGE_MODE
                                        | REGULATOR_CHANGE_STATUS,
        },
 -      .num_consumer_supplies  = 1,
 -      .consumer_supplies      = &rx51_vaux2_supply,
++      .num_consumer_supplies  = ARRAY_SIZE(rx51_vaux2_supply),
++      .consumer_supplies      = rx51_vaux2_supply,
  };
  
  /* VAUX3 - adds more power to VIO_18 rail */
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index ddfd7c33361ba31ba64fb1a4ef3a4a79b5b1c260,018ff73ab71d70b93908c9d095f1c01707a111d3..bd5fa89af07c32814ea55f28c0075dad7747cdad
@@@ -254,9 -254,7 +254,7 @@@ static int tm6000_fillbuf(struct tm6000
                memcpy(runtime->dma_area + buf_pos * stride, buf,
                        length * stride);
  
- #ifndef NO_PCM_LOCK
 -       snd_pcm_stream_lock(substream);
 +      snd_pcm_stream_lock(substream);
- #endif
  
        chip->buf_pos += length;
        if (chip->buf_pos >= runtime->buffer_size)
                period_elapsed = 1;
        }
  
- #ifndef NO_PCM_LOCK
 -       snd_pcm_stream_unlock(substream);
 +      snd_pcm_stream_unlock(substream);
- #endif
  
        if (period_elapsed)
                snd_pcm_period_elapsed(substream);
diff --cc kernel/compat.c
Simple merge