Lines Matching full:component

3 // test-component.c  --  Test Audio Component driver
249 static int test_component_probe(struct snd_soc_component *component) in test_component_probe() argument
251 mile_stone(component); in test_component_probe()
256 static void test_component_remove(struct snd_soc_component *component) in test_component_remove() argument
258 mile_stone(component); in test_component_remove()
261 static int test_component_suspend(struct snd_soc_component *component) in test_component_suspend() argument
263 mile_stone(component); in test_component_suspend()
268 static int test_component_resume(struct snd_soc_component *component) in test_component_resume() argument
270 mile_stone(component); in test_component_resume()
276 static int test_component_pcm_construct(struct snd_soc_component *component, in test_component_pcm_construct() argument
279 mile_stone(component); in test_component_pcm_construct()
290 static void test_component_pcm_destruct(struct snd_soc_component *component, in test_component_pcm_destruct() argument
293 mile_stone(component); in test_component_pcm_destruct()
296 static int test_component_set_sysclk(struct snd_soc_component *component, in test_component_set_sysclk() argument
299 mile_stone(component); in test_component_set_sysclk()
304 static int test_component_set_pll(struct snd_soc_component *component, int pll_id, in test_component_set_pll() argument
307 mile_stone(component); in test_component_set_pll()
312 static int test_component_set_jack(struct snd_soc_component *component, in test_component_set_jack() argument
315 mile_stone(component); in test_component_set_jack()
320 static void test_component_seq_notifier(struct snd_soc_component *component, in test_component_seq_notifier() argument
323 mile_stone(component); in test_component_seq_notifier()
326 static int test_component_stream_event(struct snd_soc_component *component, int event) in test_component_stream_event() argument
328 mile_stone(component); in test_component_stream_event()
333 static int test_component_set_bias_level(struct snd_soc_component *component, in test_component_set_bias_level() argument
336 mile_stone(component); in test_component_set_bias_level()
354 static int test_component_open(struct snd_soc_component *component, in test_component_open() argument
359 mile_stone(component); in test_component_open()
368 static int test_component_close(struct snd_soc_component *component, in test_component_close() argument
371 mile_stone(component); in test_component_close()
376 static int test_component_ioctl(struct snd_soc_component *component, in test_component_ioctl() argument
380 mile_stone(component); in test_component_ioctl()
385 static int test_component_hw_params(struct snd_soc_component *component, in test_component_hw_params() argument
389 mile_stone(component); in test_component_hw_params()
394 static int test_component_hw_free(struct snd_soc_component *component, in test_component_hw_free() argument
397 mile_stone(component); in test_component_hw_free()
402 static int test_component_prepare(struct snd_soc_component *component, in test_component_prepare() argument
405 mile_stone(component); in test_component_prepare()
430 static int test_component_trigger(struct snd_soc_component *component, in test_component_trigger() argument
433 struct test_priv *priv = dev_get_drvdata(component->dev); in test_component_trigger()
435 mile_stone(component); in test_component_trigger()
450 static int test_component_sync_stop(struct snd_soc_component *component, in test_component_sync_stop() argument
453 mile_stone(component); in test_component_sync_stop()
458 static snd_pcm_uframes_t test_component_pointer(struct snd_soc_component *component, in test_component_pointer() argument
471 /* mile_stone(component); */ in test_component_pointer()
476 static int test_component_get_time_info(struct snd_soc_component *component, in test_component_get_time_info() argument
483 mile_stone(component); in test_component_get_time_info()
511 { .compatible = "test-cpu-verbose-component", .data = (void *)&test_cpu_vn, },
515 { .compatible = "test-codec-verbose-component", .data = (void *)&test_codec_vn, },
646 .name = "test-component",
654 MODULE_ALIAS("platform:asoc-test-component");
656 MODULE_DESCRIPTION("ASoC Test Component");