Home
last modified time | relevance | path

Searched refs:mops (Results 1 – 13 of 13) sorted by relevance

/linux-6.1.9/drivers/fpga/
Dfpga-mgr.c30 if (mgr->mops->fpga_remove) in fpga_mgr_fpga_remove()
31 mgr->mops->fpga_remove(mgr); in fpga_mgr_fpga_remove()
36 if (mgr->mops->state) in fpga_mgr_state()
37 return mgr->mops->state(mgr); in fpga_mgr_state()
43 if (mgr->mops->status) in fpga_mgr_status()
44 return mgr->mops->status(mgr); in fpga_mgr_status()
50 if (mgr->mops->write) in fpga_mgr_write()
51 return mgr->mops->write(mgr, buf, count); in fpga_mgr_write()
65 if (mgr->mops->write_complete) in fpga_mgr_write_complete()
66 ret = mgr->mops->write_complete(mgr, info); in fpga_mgr_write_complete()
[all …]
Ddfl-fme-mgr.c300 info.mops = &fme_mgr_ops; in fme_mgr_probe()
/linux-6.1.9/net/sched/
Dact_ife.c179 int register_ife_op(struct tcf_meta_ops *mops) in register_ife_op() argument
183 if (!mops->metaid || !mops->metatype || !mops->name || in register_ife_op()
184 !mops->check_presence || !mops->encode || !mops->decode || in register_ife_op()
185 !mops->get || !mops->alloc) in register_ife_op()
191 if (m->metaid == mops->metaid || in register_ife_op()
192 (strcmp(mops->name, m->name) == 0)) { in register_ife_op()
198 if (!mops->release) in register_ife_op()
199 mops->release = ife_release_meta_gen; in register_ife_op()
201 list_add_tail(&mops->list, &ifeoplist); in register_ife_op()
207 int unregister_ife_op(struct tcf_meta_ops *mops) in unregister_ife_op() argument
[all …]
/linux-6.1.9/include/linux/fpga/
Dfpga-mgr.h143 const struct fpga_manager_ops *mops; member
212 const struct fpga_manager_ops *mops; member
238 const struct fpga_manager_ops *mops, void *priv);
245 const struct fpga_manager_ops *mops, void *priv);
/linux-6.1.9/include/net/tc_act/
Dtc_ife.h64 int register_ife_op(struct tcf_meta_ops *mops);
65 int unregister_ife_op(struct tcf_meta_ops *mops);
/linux-6.1.9/drivers/media/pci/saa7134/
Dsaa7134-core.c559 if (dev->mops->irq_ts_done != NULL) in saa7134_irq()
560 dev->mops->irq_ts_done(dev, status); in saa7134_irq()
993 if (NULL != dev->mops) in mpeg_ops_attach()
1000 dev->mops = ops; in mpeg_ops_attach()
1006 if (NULL == dev->mops) in mpeg_ops_detach()
1008 if (dev->mops != ops) in mpeg_ops_detach()
1010 dev->mops->fini(dev); in mpeg_ops_detach()
1011 dev->mops = NULL; in mpeg_ops_detach()
1018 struct saa7134_mpeg_ops *mops; in saa7134_initdev() local
1189 list_for_each_entry(mops, &mops_list, next) in saa7134_initdev()
[all …]
Dsaa7134.h619 struct saa7134_mpeg_ops *mops; member
Dsaa7134-video.c2233 if (dev->mops && dev->mops->signal_change) in saa7134_irq_video_signalchange()
2234 dev->mops->signal_change(dev); in saa7134_irq_video_signalchange()
/linux-6.1.9/arch/sparc/kernel/
Dmdesc.c74 struct mdesc_mem_ops *mops; member
238 struct mdesc_mem_ops *mops) in mdesc_alloc() argument
240 struct mdesc_handle *hp = mops->alloc(mdesc_size); in mdesc_alloc()
243 hp->mops = mops; in mdesc_alloc()
250 hp->mops->free(hp); in mdesc_free()
279 hp->mops->free(hp); in mdesc_release()
Dldc.c144 const struct ldc_mode_ops *mops; member
1125 const struct ldc_mode_ops *mops; in ldc_alloc() local
1142 mops = &raw_ops; in ldc_alloc()
1147 mops = &nonraw_ops; in ldc_alloc()
1152 mops = &stream_ops; in ldc_alloc()
1187 lp->mops = mops; in ldc_alloc()
1953 err = lp->mops->write(lp, buf, size); in ldc_write()
1979 err = lp->mops->read(lp, buf, size); in ldc_read()
/linux-6.1.9/mm/
Dmigrate.c63 const struct movable_operations *mops; in isolate_movable_page() local
101 mops = page_movable_ops(page); in isolate_movable_page()
102 VM_BUG_ON_PAGE(!mops, page); in isolate_movable_page()
104 if (!mops->isolate_page(page, mode)) in isolate_movable_page()
124 const struct movable_operations *mops = page_movable_ops(page); in putback_movable_page() local
126 mops->putback_page(page); in putback_movable_page()
953 const struct movable_operations *mops; in move_to_new_folio() local
966 mops = page_movable_ops(&src->page); in move_to_new_folio()
967 rc = mops->migrate_page(&dst->page, &src->page, mode); in move_to_new_folio()
Dcompaction.c113 const struct movable_operations *mops; in PageMovable() local
119 mops = page_movable_ops(page); in PageMovable()
120 if (mops) in PageMovable()
127 void __SetPageMovable(struct page *page, const struct movable_operations *mops) in __SetPageMovable() argument
130 VM_BUG_ON_PAGE((unsigned long)mops & PAGE_MAPPING_MOVABLE, page); in __SetPageMovable()
131 page->mapping = (void *)((unsigned long)mops | PAGE_MAPPING_MOVABLE); in __SetPageMovable()
/linux-6.1.9/drivers/clk/nxp/
Dclk-lpc32xx.c1435 const struct clk_ops *mops = NULL, *dops = NULL, *gops = NULL; in lpc32xx_clk_register() local
1442 mops = mux0->ops; in lpc32xx_clk_register()
1456 mux_hw, mops, div_hw, dops, in lpc32xx_clk_register()