diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-30 03:08:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-30 03:08:53 -0400 |
commit | 664a41b8a91bf78a01a751e15175e0008977685a (patch) | |
tree | d9dc15c83400ad2dfb430ff27ae3e7fdc9395856 /arch/sh/boards/mach-ap325rxa | |
parent | 983236b5741e557451f3ed4ec5ebf1f62a5b2c15 (diff) | |
parent | ee2ce3a0b43d14d792d34cf88e7bc2091096744b (diff) |
Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6
* '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)
Diffstat (limited to 'arch/sh/boards/mach-ap325rxa')
-rw-r--r-- | arch/sh/boards/mach-ap325rxa/setup.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/sh/boards/mach-ap325rxa/setup.c b/arch/sh/boards/mach-ap325rxa/setup.c index 1dc924b2f508..d36265758911 100644 --- a/arch/sh/boards/mach-ap325rxa/setup.c +++ b/arch/sh/boards/mach-ap325rxa/setup.c | |||
@@ -332,8 +332,8 @@ static int camera_set_capture(struct soc_camera_platform_info *info, | |||
332 | return ret; | 332 | return ret; |
333 | } | 333 | } |
334 | 334 | ||
335 | static int ap325rxa_camera_add(struct soc_camera_link *icl, struct device *dev); | 335 | static int ap325rxa_camera_add(struct soc_camera_device *icd); |
336 | static void ap325rxa_camera_del(struct soc_camera_link *icl); | 336 | static void ap325rxa_camera_del(struct soc_camera_device *icd); |
337 | 337 | ||
338 | static struct soc_camera_platform_info camera_info = { | 338 | static struct soc_camera_platform_info camera_info = { |
339 | .format_name = "UYVY", | 339 | .format_name = "UYVY", |
@@ -366,24 +366,23 @@ static void ap325rxa_camera_release(struct device *dev) | |||
366 | soc_camera_platform_release(&camera_device); | 366 | soc_camera_platform_release(&camera_device); |
367 | } | 367 | } |
368 | 368 | ||
369 | static int ap325rxa_camera_add(struct soc_camera_link *icl, | 369 | static int ap325rxa_camera_add(struct soc_camera_device *icd) |
370 | struct device *dev) | ||
371 | { | 370 | { |
372 | int ret = soc_camera_platform_add(icl, dev, &camera_device, &camera_link, | 371 | int ret = soc_camera_platform_add(icd, &camera_device, &camera_link, |
373 | ap325rxa_camera_release, 0); | 372 | ap325rxa_camera_release, 0); |
374 | if (ret < 0) | 373 | if (ret < 0) |
375 | return ret; | 374 | return ret; |
376 | 375 | ||
377 | ret = camera_probe(); | 376 | ret = camera_probe(); |
378 | if (ret < 0) | 377 | if (ret < 0) |
379 | soc_camera_platform_del(icl, camera_device, &camera_link); | 378 | soc_camera_platform_del(icd, camera_device, &camera_link); |
380 | 379 | ||
381 | return ret; | 380 | return ret; |
382 | } | 381 | } |
383 | 382 | ||
384 | static void ap325rxa_camera_del(struct soc_camera_link *icl) | 383 | static void ap325rxa_camera_del(struct soc_camera_device *icd) |
385 | { | 384 | { |
386 | soc_camera_platform_del(icl, camera_device, &camera_link); | 385 | soc_camera_platform_del(icd, camera_device, &camera_link); |
387 | } | 386 | } |
388 | #endif /* CONFIG_I2C */ | 387 | #endif /* CONFIG_I2C */ |
389 | 388 | ||