]> Pileus Git - ~andy/linux/commitdiff
Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 30 Jul 2011 07:08:53 +0000 (00:08 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 30 Jul 2011 07:08:53 +0000 (00:08 -0700)
* 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (430 commits)
  [media] ir-mce_kbd-decoder: include module.h for its facilities
  [media] ov5642: include module.h for its facilities
  [media] em28xx: Fix DVB-C maxsize for em2884
  [media] tda18271c2dd: Fix saw filter configuration for DVB-C @6MHz
  [media] v4l: mt9v032: Fix Bayer pattern
  [media] V4L: mt9m111: rewrite set_pixfmt
  [media] V4L: mt9m111: fix missing return value check mt9m111_reg_clear
  [media] V4L: initial driver for ov5642 CMOS sensor
  [media] V4L: sh_mobile_ceu_camera: fix Oops when USERPTR mapping fails
  [media] V4L: soc-camera: remove soc-camera bus and devices on it
  [media] V4L: soc-camera: un-export the soc-camera bus
  [media] V4L: sh_mobile_csi2: switch away from using the soc-camera bus notifier
  [media] V4L: add media bus configuration subdev operations
  [media] V4L: soc-camera: group struct field initialisations together
  [media] V4L: soc-camera: remove now unused soc-camera specific PM hooks
  [media] V4L: pxa-camera: switch to using standard PM hooks
  [media] NetUP Dual DVB-T/C CI RF: force card hardware revision by module param
  [media] Don't OOPS if videobuf_dvb_get_frontend return NULL
  [media] NetUP Dual DVB-T/C CI RF: load firmware according card revision
  [media] omap3isp: Support configurable HS/VS polarities
  ...

Fix up conflicts:
 - arch/arm/mach-omap2/board-rx51-peripherals.c:
     cleanup regulator supply definitions in mach-omap2
   vs
     OMAP3: RX-51: define vdds_csib regulator supply
 - drivers/staging/tm6000/tm6000-alsa.c (trivial)

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