/* * SiRF Audio port driver * * Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company. * * Licensed under GPLv2 or later. */ #include #include #include struct sirf_audio_port { struct regmap *regmap; struct snd_dmaengine_dai_dma_data playback_dma_data; struct snd_dmaengine_dai_dma_data capture_dma_data; }; static int sirf_audio_port_dai_probe(struct snd_soc_dai *dai) { struct sirf_audio_port *port = snd_soc_dai_get_drvdata(dai); snd_soc_dai_init_dma_data(dai, &port->playback_dma_data, &port->capture_dma_data); return 0; } static struct snd_soc_dai_driver sirf_audio_port_dai = { .probe = sirf_audio_port_dai_probe, .name = "sirf-audio-port", .id = 0, .playback = { .channels_min = 2, .channels_max = 2, .rates = SNDRV_PCM_RATE_48000, .formats = SNDRV_PCM_FMTBIT_S16_LE, }, .capture = { .channels_min = 1, .channels_max = 2, .rates = SNDRV_PCM_RATE_48000, .formats = SNDRV_PCM_FMTBIT_S16_LE, }, }; static const struct snd_soc_component_driver sirf_audio_port_component = { .name = "sirf-audio-port", }; static int sirf_audio_port_probe(struct platform_device *pdev) { int ret; struct sirf_audio_port *port; port = devm_kzalloc(&pdev->dev, sizeof(struct sirf_audio_port), GFP_KERNEL); if (!port) return -ENOMEM; ret = devm_snd_soc_register_component(&pdev->dev, &sirf_audio_port_component, &sirf_audio_port_dai, 1); if (ret) return ret; platform_set_drvdata(pdev, port); return devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0); } static const struct of_device_id sirf_audio_port_of_match[] = { { .compatible = "sirf,audio-port", }, {} }; MODULE_DEVICE_TABLE(of, sirf_audio_port_of_match); static struct platform_driver sirf_audio_port_driver = { .driver = { .name = "sirf-audio-port", .of_match_table = sirf_audio_port_of_match, }, .probe = sirf_audio_port_probe, }; module_platform_driver(sirf_audio_port_driver); MODULE_DESCRIPTION("SiRF Audio Port driver"); MODULE_AUTHOR("RongJun Ying "); MODULE_LICENSE("GPL v2"); pe='hidden' name='id' value='143fca77cce906d35f7a60ccef648e888df589f2'/>
diff options
context:
space:
mode:
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>2016-12-27 08:57:59 -0800
committerJiri Kosina <jkosina@suse.cz>2017-01-02 14:01:30 +0100
commit143fca77cce906d35f7a60ccef648e888df589f2 (patch)
treeb08f1ce713d5a014824ac8f9a3762468ad987ce5
parent8aa2cc7e747881d1fd52db28261b201d4e3e5565 (diff)
HID: sensor-hub: Move the memset to sensor_hub_get_feature()
While applying patch d443a0aa3a29: "HID: hid-sensor-hub: clear memory to avoid random data", there was some issues in applying correct version of the patch. This resulted in the breakage of sensor functions as all request like power-up will be reset by the memset() in the function sensor_hub_set_feature(). The reset of caller buffer should be in the function sensor_hub_get_feature(), not in the sensor_hub_set_feature(). Fixes: d443a0aa3a29 ("HID: hid-sensor-hub: clear memory to avoid random data") Cc: Stable <stable@vger.kernel.org> # 4.9+ Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>