diff options
Diffstat (limited to 'drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c')
-rw-r--r-- | drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c b/drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c index ee9d6225236a..5bc74149fcb9 100644 --- a/drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c +++ b/drivers/media/usb/cx231xx/cx231xx-pcb-cfg.c | |||
@@ -703,7 +703,7 @@ int initialize_cx231xx(struct cx231xx *dev) | |||
703 | _current_scenario_idx = INDEX_BUSPOWER_DIF_ONLY; | 703 | _current_scenario_idx = INDEX_BUSPOWER_DIF_ONLY; |
704 | break; | 704 | break; |
705 | default: | 705 | default: |
706 | dev_err(&dev->udev->dev, | 706 | dev_err(dev->dev, |
707 | "bad config in buspower!!!!\nconfig_info=%x\n", | 707 | "bad config in buspower!!!!\nconfig_info=%x\n", |
708 | config_info & BUSPOWER_MASK); | 708 | config_info & BUSPOWER_MASK); |
709 | return 1; | 709 | return 1; |
@@ -768,7 +768,7 @@ int initialize_cx231xx(struct cx231xx *dev) | |||
768 | _current_scenario_idx = INDEX_SELFPOWER_COMPRESSOR; | 768 | _current_scenario_idx = INDEX_SELFPOWER_COMPRESSOR; |
769 | break; | 769 | break; |
770 | default: | 770 | default: |
771 | dev_err(&dev->udev->dev, | 771 | dev_err(dev->dev, |
772 | "bad senario!!!!!\nconfig_info=%x\n", | 772 | "bad senario!!!!!\nconfig_info=%x\n", |
773 | config_info & SELFPOWER_MASK); | 773 | config_info & SELFPOWER_MASK); |
774 | return -ENODEV; | 774 | return -ENODEV; |
@@ -781,27 +781,27 @@ int initialize_cx231xx(struct cx231xx *dev) | |||
781 | sizeof(struct pcb_config)); | 781 | sizeof(struct pcb_config)); |
782 | 782 | ||
783 | if (pcb_debug) { | 783 | if (pcb_debug) { |
784 | dev_info(&dev->udev->dev, | 784 | dev_info(dev->dev, |
785 | "SC(0x00) register = 0x%x\n", config_info); | 785 | "SC(0x00) register = 0x%x\n", config_info); |
786 | dev_info(&dev->udev->dev, | 786 | dev_info(dev->dev, |
787 | "scenario %d\n", | 787 | "scenario %d\n", |
788 | (dev->current_pcb_config.index) + 1); | 788 | (dev->current_pcb_config.index) + 1); |
789 | dev_info(&dev->udev->dev, | 789 | dev_info(dev->dev, |
790 | "type=%x\n", | 790 | "type=%x\n", |
791 | dev->current_pcb_config.type); | 791 | dev->current_pcb_config.type); |
792 | dev_info(&dev->udev->dev, | 792 | dev_info(dev->dev, |
793 | "mode=%x\n", | 793 | "mode=%x\n", |
794 | dev->current_pcb_config.mode); | 794 | dev->current_pcb_config.mode); |
795 | dev_info(&dev->udev->dev, | 795 | dev_info(dev->dev, |
796 | "speed=%x\n", | 796 | "speed=%x\n", |
797 | dev->current_pcb_config.speed); | 797 | dev->current_pcb_config.speed); |
798 | dev_info(&dev->udev->dev, | 798 | dev_info(dev->dev, |
799 | "ts1_source=%x\n", | 799 | "ts1_source=%x\n", |
800 | dev->current_pcb_config.ts1_source); | 800 | dev->current_pcb_config.ts1_source); |
801 | dev_info(&dev->udev->dev, | 801 | dev_info(dev->dev, |
802 | "ts2_source=%x\n", | 802 | "ts2_source=%x\n", |
803 | dev->current_pcb_config.ts2_source); | 803 | dev->current_pcb_config.ts2_source); |
804 | dev_info(&dev->udev->dev, | 804 | dev_info(dev->dev, |
805 | "analog_source=%x\n", | 805 | "analog_source=%x\n", |
806 | dev->current_pcb_config.analog_source); | 806 | dev->current_pcb_config.analog_source); |
807 | } | 807 | } |