Searched refs:comp (Results 1 - 25 of 437) sorted by relevance

1234567891011>>

/linux-master/drivers/gpu/drm/mediatek/
H A Dmtk_ddp_comp.h101 static inline int mtk_ddp_comp_power_on(struct mtk_ddp_comp *comp) argument
103 if (comp->funcs && comp->funcs->power_on)
104 return comp->funcs->power_on(comp->dev);
106 return pm_runtime_resume_and_get(comp->dev);
110 static inline void mtk_ddp_comp_power_off(struct mtk_ddp_comp *comp) argument
112 if (comp->funcs && comp->funcs->power_off)
113 comp
118 mtk_ddp_comp_clk_enable(struct mtk_ddp_comp *comp) argument
126 mtk_ddp_comp_clk_disable(struct mtk_ddp_comp *comp) argument
133 mtk_ddp_comp_mode_valid(struct mtk_ddp_comp *comp, const struct drm_display_mode *mode) argument
141 mtk_ddp_comp_config(struct mtk_ddp_comp *comp, unsigned int w, unsigned int h, unsigned int vrefresh, unsigned int bpc, struct cmdq_pkt *cmdq_pkt) argument
150 mtk_ddp_comp_start(struct mtk_ddp_comp *comp) argument
156 mtk_ddp_comp_stop(struct mtk_ddp_comp *comp) argument
162 mtk_ddp_comp_register_vblank_cb(struct mtk_ddp_comp *comp, void (*vblank_cb)(void *), void *vblank_cb_data) argument
171 mtk_ddp_comp_unregister_vblank_cb(struct mtk_ddp_comp *comp) argument
177 mtk_ddp_comp_enable_vblank(struct mtk_ddp_comp *comp) argument
183 mtk_ddp_comp_disable_vblank(struct mtk_ddp_comp *comp) argument
190 mtk_ddp_comp_supported_rotations(struct mtk_ddp_comp *comp) argument
198 mtk_ddp_comp_layer_nr(struct mtk_ddp_comp *comp) argument
206 mtk_ddp_comp_layer_check(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state) argument
215 mtk_ddp_comp_layer_config(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state, struct cmdq_pkt *cmdq_pkt) argument
224 mtk_ddp_gamma_get_lut_size(struct mtk_ddp_comp *comp) argument
232 mtk_ddp_gamma_set(struct mtk_ddp_comp *comp, struct drm_crtc_state *state) argument
239 mtk_ddp_comp_bgclr_in_on(struct mtk_ddp_comp *comp) argument
245 mtk_ddp_comp_bgclr_in_off(struct mtk_ddp_comp *comp) argument
251 mtk_ddp_ctm_set(struct mtk_ddp_comp *comp, struct drm_crtc_state *state) argument
258 mtk_ddp_comp_dma_dev_get(struct mtk_ddp_comp *comp) argument
266 mtk_ddp_comp_get_formats(struct mtk_ddp_comp *comp) argument
275 mtk_ddp_comp_get_num_formats(struct mtk_ddp_comp *comp) argument
283 mtk_ddp_comp_add(struct mtk_ddp_comp *comp, struct mtk_mutex *mutex) argument
292 mtk_ddp_comp_remove(struct mtk_ddp_comp *comp, struct mtk_mutex *mutex) argument
301 mtk_ddp_comp_connect(struct mtk_ddp_comp *comp, struct device *mmsys_dev, unsigned int next) argument
311 mtk_ddp_comp_disconnect(struct mtk_ddp_comp *comp, struct device *mmsys_dev, unsigned int next) argument
321 mtk_ddp_comp_encoder_index_set(struct mtk_ddp_comp *comp) argument
[all...]
/linux-master/drivers/media/platform/mediatek/mdp/
H A Dmtk_mdp_comp.c14 void mtk_mdp_comp_clock_on(struct device *dev, struct mtk_mdp_comp *comp) argument
18 for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
19 if (IS_ERR(comp->clk[i]))
21 err = clk_prepare_enable(comp->clk[i]);
25 err, comp->type, i);
29 void mtk_mdp_comp_clock_off(struct device *dev, struct mtk_mdp_comp *comp) argument
33 for (i = 0; i < ARRAY_SIZE(comp->clk); i++) {
34 if (IS_ERR(comp->clk[i]))
36 clk_disable_unprepare(comp->clk[i]);
41 struct mtk_mdp_comp *comp,
40 mtk_mdp_comp_init(struct device *dev, struct device_node *node, struct mtk_mdp_comp *comp, enum mtk_mdp_comp_type comp_type) argument
71 mtk_mdp_comp_deinit(struct device *dev, struct mtk_mdp_comp *comp) argument
[all...]
H A Dmtk_mdp_comp.h39 struct mtk_mdp_comp *comp,
41 void mtk_mdp_comp_deinit(struct device *dev, struct mtk_mdp_comp *comp);
42 void mtk_mdp_comp_clock_on(struct device *dev, struct mtk_mdp_comp *comp);
43 void mtk_mdp_comp_clock_off(struct device *dev, struct mtk_mdp_comp *comp);
H A Dmtk_mdp_core.c94 struct mtk_mdp_comp *comp)
96 list_add(&comp->node, &mdp->comp_list);
100 struct mtk_mdp_comp *comp)
102 list_del(&comp->node);
110 struct mtk_mdp_comp *comp, *comp_temp; local
152 comp = devm_kzalloc(dev, sizeof(*comp), GFP_KERNEL);
153 if (!comp) {
159 ret = mtk_mdp_comp_init(dev, node, comp, comp_type);
165 mtk_mdp_register_component(mdp, comp);
93 mtk_mdp_register_component(struct mtk_mdp_dev *mdp, struct mtk_mdp_comp *comp) argument
99 mtk_mdp_unregister_component(struct mtk_mdp_dev *mdp, struct mtk_mdp_comp *comp) argument
241 struct mtk_mdp_comp *comp, *comp_temp; local
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/lib/
H A Ddevcom.c39 struct mlx5_devcom_comp *comp; member in struct:mlx5_devcom_comp_dev
113 struct mlx5_devcom_comp *comp; local
115 comp = kzalloc(sizeof(*comp), GFP_KERNEL);
116 if (!comp)
119 comp->id = id;
120 comp->key = key;
121 comp->handler = handler;
122 init_rwsem(&comp->sem);
123 lockdep_register_key(&comp
134 struct mlx5_devcom_comp *comp = container_of(ref, struct mlx5_devcom_comp, ref); local
144 devcom_alloc_comp_dev(struct mlx5_devcom_dev *devc, struct mlx5_devcom_comp *comp, void *data) argument
169 struct mlx5_devcom_comp *comp = devcom->comp; local
194 struct mlx5_devcom_comp *comp; local
220 struct mlx5_devcom_comp *comp; local
261 struct mlx5_devcom_comp *comp = devcom->comp; local
271 struct mlx5_devcom_comp *comp; local
325 struct mlx5_devcom_comp *comp; local
348 struct mlx5_devcom_comp *comp = devcom->comp; local
372 struct mlx5_devcom_comp *comp = devcom->comp; local
[all...]
/linux-master/drivers/clk/actions/
H A Dowl-composite.c18 struct owl_composite *comp = hw_to_owl_comp(hw); local
20 return owl_mux_helper_get_parent(&comp->common, &comp->mux_hw);
25 struct owl_composite *comp = hw_to_owl_comp(hw); local
27 return owl_mux_helper_set_parent(&comp->common, &comp->mux_hw, index);
32 struct owl_composite *comp = hw_to_owl_comp(hw); local
33 struct owl_clk_common *common = &comp->common;
35 owl_gate_set(common, &comp->gate_hw, false);
40 struct owl_composite *comp local
50 struct owl_composite *comp = hw_to_owl_comp(hw); local
59 struct owl_composite *comp = hw_to_owl_comp(hw); local
74 struct owl_composite *comp = hw_to_owl_comp(hw); local
83 struct owl_composite *comp = hw_to_owl_comp(hw); local
92 struct owl_composite *comp = hw_to_owl_comp(hw); local
108 struct owl_composite *comp = hw_to_owl_comp(hw); local
118 struct owl_composite *comp = hw_to_owl_comp(hw); local
128 struct owl_composite *comp = hw_to_owl_comp(hw); local
137 struct owl_composite *comp = hw_to_owl_comp(hw); local
[all...]
/linux-master/drivers/block/zram/
H A Dzcomp.c50 static int zcomp_strm_init(struct zcomp_strm *zstrm, struct zcomp *comp) argument
52 zstrm->tfm = crypto_alloc_comp(comp->name, 0, 0);
65 bool zcomp_available_algorithm(const char *comp) argument
74 return crypto_has_comp(comp, 0, 0) == 1;
78 ssize_t zcomp_available_show(const char *comp, char *buf) argument
85 if (!strcmp(comp, backends[i])) {
99 if (!known_algorithm && crypto_has_comp(comp, 0, 0) == 1)
101 "[%s] ", comp);
107 struct zcomp_strm *zcomp_stream_get(struct zcomp *comp) argument
109 local_lock(&comp
113 zcomp_stream_put(struct zcomp *comp) argument
154 struct zcomp *comp = hlist_entry(node, struct zcomp, node); local
169 struct zcomp *comp = hlist_entry(node, struct zcomp, node); local
177 zcomp_init(struct zcomp *comp) argument
195 zcomp_destroy(struct zcomp *comp) argument
212 struct zcomp *comp; local
[all...]
H A Dzcomp.h27 ssize_t zcomp_available_show(const char *comp, char *buf);
28 bool zcomp_available_algorithm(const char *comp);
31 void zcomp_destroy(struct zcomp *comp);
33 struct zcomp_strm *zcomp_stream_get(struct zcomp *comp);
34 void zcomp_stream_put(struct zcomp *comp);
/linux-master/crypto/
H A Dcompress.c12 int crypto_comp_compress(struct crypto_comp *comp, argument
16 struct crypto_tfm *tfm = crypto_comp_tfm(comp);
23 int crypto_comp_decompress(struct crypto_comp *comp, argument
27 struct crypto_tfm *tfm = crypto_comp_tfm(comp);
/linux-master/sound/soc/intel/boards/
H A Dhda_dsp_common.h20 struct snd_soc_component *comp);
23 struct snd_soc_component *comp)
22 hda_dsp_hdmi_build_controls(struct snd_soc_card *card, struct snd_soc_component *comp) argument
/linux-master/drivers/net/slip/
H A Dslhc.c96 struct slcompress *comp; local
101 comp = kzalloc(sizeof(struct slcompress), GFP_KERNEL);
102 if (! comp)
107 comp->rstate = kzalloc(rsize, GFP_KERNEL);
108 if (! comp->rstate)
110 comp->rslot_limit = rslots - 1;
115 comp->tstate = kzalloc(tsize, GFP_KERNEL);
116 if (! comp->tstate)
118 comp->tslot_limit = tslots - 1;
121 comp
154 slhc_free(struct slcompress *comp) argument
227 slhc_compress(struct slcompress *comp, unsigned char *icp, int isize, unsigned char *ocp, unsigned char **cpp, int compress_cid) argument
493 slhc_uncompress(struct slcompress *comp, unsigned char *icp, int isize) argument
644 slhc_remember(struct slcompress *comp, unsigned char *icp, int isize) argument
695 slhc_toss(struct slcompress *comp) argument
707 slhc_toss(struct slcompress *comp) argument
713 slhc_uncompress(struct slcompress *comp, unsigned char *icp, int isize) argument
719 slhc_compress(struct slcompress *comp, unsigned char *icp, int isize, unsigned char *ocp, unsigned char **cpp, int compress_cid) argument
727 slhc_remember(struct slcompress *comp, unsigned char *icp, int isize) argument
734 slhc_free(struct slcompress *comp) argument
[all...]
/linux-master/drivers/counter/
H A Dcounter-sysfs.c31 * @comp: Counter component callbacks and data
39 struct counter_comp comp; member in struct:counter_attribute
115 err = a->comp.device_u8_read(counter, &data);
118 err = a->comp.signal_u8_read(counter, a->parent, &data);
121 err = a->comp.count_u8_read(counter, a->parent, &data);
129 if (a->comp.type == COUNTER_COMP_BOOL)
146 if (a->comp.type == COUNTER_COMP_BOOL) {
156 err = a->comp.device_u8_write(counter, data);
159 err = a->comp.signal_u8_write(counter, a->parent, data);
162 err = a->comp
532 counter_avail_attr_create(struct device *const dev, struct counter_attribute_group *const group, const struct counter_comp *const comp, void *const parent) argument
567 counter_attr_create(struct device *const dev, struct counter_attribute_group *const group, const struct counter_comp *const comp, const enum counter_scope scope, void *const parent) argument
763 counter_array_attrs_create(struct device *const dev, struct counter_attribute_group *const group, const struct counter_comp *const comp, const enum counter_scope scope, void *const parent, const size_t id) argument
847 struct counter_comp comp; local
901 struct counter_comp comp; local
947 struct counter_comp comp; local
[all...]
H A Dcounter-chrdev.c29 struct counter_comp comp; member in struct:counter_comp_node
49 #define counter_comp_read_is_set(comp) \
50 (comp.action_read || \
51 comp.device_u8_read || \
52 comp.count_u8_read || \
53 comp.signal_u8_read || \
54 comp.device_u32_read || \
55 comp.count_u32_read || \
56 comp.signal_u32_read || \
57 comp
488 counter_get_array_data(struct counter_device *const counter, const enum counter_scope scope, void *const parent, const struct counter_comp *const comp, const size_t idx, u64 *const value) argument
528 const struct counter_comp *const comp = &comp_node->comp; local
[all...]
/linux-master/drivers/gpu/drm/nouveau/include/nvif/
H A Dif500b.h23 __u8 comp; member in struct:nv50_mem_map_v0
H A Dif500d.h19 __u8 comp; member in struct:nv50_vmm_map_v0
/linux-master/sound/soc/codecs/
H A Dwcd-clsh-v2.c19 struct snd_soc_component *comp; member in struct:wcd_clsh_ctrl
122 struct snd_soc_component *comp = ctrl->comp; local
126 snd_soc_component_update_bits(comp, WCD9XXX_A_CDC_CLSH_CRC,
133 static inline void wcd_clsh_set_buck_mode(struct snd_soc_component *comp, argument
138 snd_soc_component_update_bits(comp, WCD9XXX_A_ANA_RX_SUPPLIES,
142 snd_soc_component_update_bits(comp, WCD9XXX_A_ANA_RX_SUPPLIES,
161 static inline void wcd_clsh_set_flyback_mode(struct snd_soc_component *comp, argument
166 snd_soc_component_update_bits(comp, WCD9XXX_A_ANA_RX_SUPPLIES,
170 snd_soc_component_update_bits(comp, WCD9XXX_A_ANA_RX_SUPPLIE
179 struct snd_soc_component *comp = ctrl->comp; local
228 struct snd_soc_component *comp = ctrl->comp; local
248 struct snd_soc_component *comp = ctrl->comp; local
273 wcd_clsh_v2_set_hph_mode(struct snd_soc_component *comp, int mode) argument
350 struct snd_soc_component *comp = ctrl->comp; local
360 wcd_clsh_set_flyback_current(struct snd_soc_component *comp, int mode) argument
372 wcd_clsh_set_buck_regulator_mode(struct snd_soc_component *comp, int mode) argument
512 struct snd_soc_component *comp = ctrl->comp; local
571 struct snd_soc_component *comp = ctrl->comp; local
661 struct snd_soc_component *comp = ctrl->comp; local
745 struct snd_soc_component *comp = ctrl->comp; local
849 struct snd_soc_component *comp = ctrl->comp; local
881 wcd_clsh_ctrl_alloc(struct snd_soc_component *comp, int version) argument
[all...]
/linux-master/drivers/vdpa/pds/
H A Dcmds.c25 union pds_core_adminq_comp comp = {}; local
30 &comp, 0);
33 comp.status, ERR_PTR(err));
47 union pds_core_adminq_comp comp = {}; local
50 err = pds_client_adminq_cmd(padev, &cmd, sizeof(cmd.vdpa), &comp, 0);
53 comp.status, ERR_PTR(err));
68 union pds_core_adminq_comp comp = {}; local
71 err = pds_client_adminq_cmd(padev, &cmd, sizeof(cmd.vdpa_status), &comp, 0);
74 status, comp.status, ERR_PTR(err));
89 union pds_core_adminq_comp comp local
113 union pds_core_adminq_comp comp = {}; local
143 union pds_core_adminq_comp comp = {}; local
170 union pds_core_adminq_comp comp = {}; local
[all...]
/linux-master/drivers/net/ethernet/amd/pds_core/
H A Dadminq.c15 union pds_core_notifyq_comp *comp; local
23 comp = cq_info->comp;
24 eid = le64_to_cpu(comp->event.eid);
26 u16 ecode = le16_to_cpu(comp->event.ecode);
32 pdsc_notify(PDS_EVENT_LINK_CHANGE, comp);
38 pdsc_notify(PDS_EVENT_RESET, comp);
55 comp = cq_info->comp;
56 eid = le64_to_cpu(comp
77 union pds_core_adminq_comp *comp; local
162 __pdsc_adminq_post(struct pdsc *pdsc, struct pdsc_qcq *qcq, union pds_core_adminq_cmd *cmd, union pds_core_adminq_comp *comp, struct pdsc_wait_context *wc) argument
229 pdsc_adminq_post(struct pdsc *pdsc, union pds_core_adminq_cmd *cmd, union pds_core_adminq_comp *comp, bool fast_poll) argument
[all...]
/linux-master/sound/soc/intel/avs/
H A Dtopology.c127 int (*parse)(struct snd_soc_component *comp, void *elem, void *object, u32 offset);
131 avs_parse_uuid_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
142 avs_parse_bool_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
153 avs_parse_byte_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
164 avs_parse_short_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
175 avs_parse_word_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
186 avs_parse_string_token(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
196 static int avs_parse_uuid_tokens(struct snd_soc_component *comp, void *object, argument
213 ret = parsers[j].parse(comp, tuple, object, parsers[j].offset);
222 static int avs_parse_string_tokens(struct snd_soc_component *comp, voi argument
248 avs_parse_word_tokens(struct snd_soc_component *comp, void *object, const struct avs_tplg_token_parser *parsers, int count, struct snd_soc_tplg_vendor_array *tuples) argument
279 avs_parse_tokens(struct snd_soc_component *comp, void *object, const struct avs_tplg_token_parser *parsers, size_t count, struct snd_soc_tplg_vendor_array *tuples, int priv_size) argument
355 parse_audio_format_bitfield(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
397 parse_link_formatted_string(struct snd_soc_component *comp, void *elem, void *object, u32 offset) argument
424 parse_dictionary_header(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, void **dict, u32 *num_entries, size_t entry_size, u32 num_entries_token) argument
448 parse_dictionary_entries(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size, void *dict, u32 num_entries, size_t entry_size, u32 entry_id_token, const struct avs_tplg_token_parser *parsers, size_t num_parsers) argument
481 parse_dictionary(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size, void **dict, u32 *num_entries, size_t entry_size, u32 num_entries_token, u32 entry_id_token, const struct avs_tplg_token_parser *parsers, size_t num_parsers) argument
512 avs_tplg_parse_libraries(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
576 avs_tplg_parse_audio_formats(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
617 avs_tplg_parse_modcfgs_base(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
842 assign_copier_gtw_instance(struct snd_soc_component *comp, struct avs_tplg_modcfg_ext *cfg) argument
877 avs_tplg_parse_modcfg_ext(struct snd_soc_component *comp, struct avs_tplg_modcfg_ext *cfg, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
927 avs_tplg_parse_modcfgs_ext(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
999 avs_tplg_parse_pplcfgs(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1064 avs_tplg_parse_bindings(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1139 avs_tplg_module_create(struct snd_soc_component *comp, struct avs_tplg_pipeline *owner, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1224 avs_tplg_pipeline_create(struct snd_soc_component *comp, struct avs_tplg_path *owner, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1331 avs_tplg_path_create(struct snd_soc_component *comp, struct avs_tplg_path_template *owner, struct snd_soc_tplg_vendor_array *tuples, u32 block_size, const struct avs_tplg_token_parser *parsers, u32 num_parsers) argument
1397 parse_path_template(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size, struct avs_tplg_path_template *template, const struct avs_tplg_token_parser *tmpl_tokens, u32 num_tmpl_tokens, const struct avs_tplg_token_parser *path_tokens, u32 num_path_tokens) argument
1444 avs_tplg_path_template_create(struct snd_soc_component *comp, struct avs_tplg *owner, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1488 avs_tplg_parse_initial_configs(struct snd_soc_component *comp, struct snd_soc_tplg_vendor_array *tuples, u32 block_size) argument
1543 avs_route_load(struct snd_soc_component *comp, int index, struct snd_soc_dapm_route *route) argument
1572 avs_widget_load(struct snd_soc_component *comp, int index, struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *dw) argument
1629 avs_widget_ready(struct snd_soc_component *comp, int index, struct snd_soc_dapm_widget *w, struct snd_soc_tplg_dapm_widget *dw) argument
1639 avs_dai_load(struct snd_soc_component *comp, int index, struct snd_soc_dai_driver *dai_drv, struct snd_soc_tplg_pcm *pcm, struct snd_soc_dai *dai) argument
1656 avs_link_load(struct snd_soc_component *comp, int index, struct snd_soc_dai_link *link, struct snd_soc_tplg_link_config *cfg) argument
1694 avs_manifest(struct snd_soc_component *comp, int index, struct snd_soc_tplg_manifest *manifest) argument
1857 avs_control_load(struct snd_soc_component *comp, int index, struct snd_kcontrol_new *ctmpl, struct snd_soc_tplg_ctl_hdr *hdr) argument
1904 avs_tplg_new(struct snd_soc_component *comp) argument
1918 avs_load_topology(struct snd_soc_component *comp, const char *filename) argument
1937 avs_remove_topology(struct snd_soc_component *comp) argument
[all...]
/linux-master/arch/arm/mach-zynq/
H A Dpm.c27 * @comp: DT compatible string
32 static void __iomem *zynq_pm_ioremap(const char *comp) argument
37 np = of_find_compatible_node(NULL, NULL, comp);
43 comp);
/linux-master/drivers/gpu/drm/omapdrm/dss/
H A Dbase.c203 struct omapdss_comp_node *comp; local
205 list_for_each_entry(comp, &omapdss_comp_list, list) {
206 if (comp->node == node)
216 struct omapdss_comp_node *comp; local
225 comp = devm_kzalloc(dev, sizeof(*comp), GFP_KERNEL);
226 if (comp) {
227 comp->node = node;
228 comp->dss_core_component = dss_core;
229 comp
273 omapdss_component_is_loaded(struct omapdss_comp_node *comp) argument
287 struct omapdss_comp_node *comp; local
[all...]
/linux-master/drivers/most/
H A Dcore.c33 struct most_component *comp; member in struct:pipe
450 struct most_component *comp; local
452 list_for_each_entry(comp, &comp_list, list) {
453 if (!strcmp(comp->name, name))
454 return comp;
473 if (c->pipe0.comp) {
477 c->pipe0.comp->name,
481 if (c->pipe1.comp) {
485 c->pipe1.comp->name,
517 struct most_component *comp; local
551 link_channel_to_component(struct most_channel *c, struct most_component *comp, char *name, char *comp_param) argument
668 struct most_component *comp; local
681 struct most_component *comp = match_component(comp_name); local
692 struct most_component *comp; local
953 channel_has_mbo(struct most_interface *iface, int id, struct most_component *comp) argument
984 most_get_mbo(struct most_interface *iface, int id, struct most_component *comp) argument
1090 most_start_channel(struct most_interface *iface, int id, struct most_component *comp) argument
1160 most_stop_channel(struct most_interface *iface, int id, struct most_component *comp) argument
1219 most_register_component(struct most_component *comp) argument
1234 struct most_component *comp = data; local
1252 most_deregister_component(struct most_component *comp) argument
[all...]
/linux-master/drivers/clk/ti/
H A Dcomposite.c83 struct component_clk *comp; local
85 list_for_each_entry(comp, &component_clks, link) {
86 if (comp->node == node)
87 return comp;
117 struct component_clk *comp; local
129 comp = _lookup_component(cclk->comp_nodes[i]);
130 if (!comp) {
139 if (cclk->comp_clks[comp->type] != NULL) {
141 node, component_clk_types[comp->type]);
145 cclk->comp_clks[comp
[all...]
/linux-master/drivers/misc/altera-stapl/
H A DMakefile2 altera-stapl-y = altera-jtag.o altera-comp.o altera.o
/linux-master/drivers/vfio/pci/pds/
H A Dcmds.c99 union pds_core_adminq_comp comp = {}; local
108 err = pds_vfio_client_adminq_cmd(pds_vfio, &cmd, &comp, true);
116 dev_dbg(dev, "%s: vf%u: Suspend comp received in %d msecs\n", __func__,
121 dev_err(dev, "%s: vf%u: Suspend comp timeout\n", __func__,
139 union pds_core_adminq_comp comp = {}; local
149 err = pds_vfio_client_adminq_cmd(pds_vfio, &cmd, &comp, true);
173 union pds_core_adminq_comp comp = {}; local
177 return pds_vfio_client_adminq_cmd(pds_vfio, &cmd, &comp, true);
189 union pds_core_adminq_comp comp = {}; local
194 err = pds_vfio_client_adminq_cmd(pds_vfio, &cmd, &comp, fals
291 union pds_core_adminq_comp comp = {}; local
329 union pds_core_adminq_comp comp = {}; local
369 union pds_core_adminq_comp comp = {}; local
397 union pds_core_adminq_comp comp = {}; local
441 union pds_core_adminq_comp comp = {}; local
463 union pds_core_adminq_comp comp = {}; local
494 union pds_core_adminq_comp comp = {}; local
[all...]

Completed in 376 milliseconds

1234567891011>>