• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/

Lines Matching defs:icl

60  * @icl:	camera platform parameters
64 unsigned long soc_camera_apply_sensor_flags(struct soc_camera_link *icl,
70 if (icl->flags & SOCAM_SENSOR_INVERT_HSYNC) {
76 if (icl->flags & SOCAM_SENSOR_INVERT_VSYNC) {
82 if (icl->flags & SOCAM_SENSOR_INVERT_PCLK) {
332 struct soc_camera_link *icl = to_soc_camera_link(icd);
377 if (icl->power) {
378 ret = icl->power(icd->pdev, 1);
384 if (icl->reset)
385 icl->reset(icd->pdev);
427 if (icl->power)
428 icl->power(icd->pdev, 0);
447 struct soc_camera_link *icl = to_soc_camera_link(icd);
454 if (icl->power)
455 icl->power(icd->pdev, 0);
885 struct soc_camera_link *icl)
889 struct i2c_adapter *adap = i2c_get_adapter(icl->i2c_adapter_id);
894 icl->i2c_adapter_id);
898 icl->board_info->platform_data = icd;
901 icl->module_name, icl->board_info, NULL);
927 #define soc_camera_init_i2c(icd, icl) (-ENODEV)
938 struct soc_camera_link *icl = to_soc_camera_link(icd);
946 if (icl->power) {
947 ret = icl->power(icd->pdev, 1);
956 if (icl->reset)
957 icl->reset(icd->pdev);
969 if (icl->board_info) {
970 ret = soc_camera_init_i2c(icd, icl);
973 } else if (!icl->add_device || !icl->del_device) {
977 if (icl->module_name)
978 ret = request_module(icl->module_name);
980 ret = icl->add_device(icl, &icd->dev);
987 icl->del_device(icl);
1022 if (icl->power)
1023 icl->power(icd->pdev, 0);
1033 if (icl->board_info) {
1036 icl->del_device(icl);
1045 if (icl->power)
1046 icl->power(icd->pdev, 0);
1058 struct soc_camera_link *icl = to_soc_camera_link(icd);
1070 if (icl->board_info) {
1076 icl->del_device(icl);
1359 struct soc_camera_link *icl = pdev->dev.platform_data;
1363 if (!icl)
1370 icd->iface = icl->bus_id;
1378 soc_camera_device_init(&icd->dev, icl);