Home
last modified time | relevance | path

Searched refs:remove (Results 1 – 25 of 4318) sorted by relevance

12345678910>>...173

/linux/drivers/base/
H A Dtransport_class.c100 atc->tclass.remove = anon_transport_dummy_function; in anon_transport_class_register()
177 if (tclass->remove) in transport_add_class_device()
178 tclass->remove(tcont, dev, classdev); in transport_add_class_device()
241 if (tclass->remove) in transport_remove_classdev()
242 tclass->remove(tcont, dev, classdev); in transport_remove_classdev()
244 if (tclass->remove != anon_transport_dummy_function) { in transport_remove_classdev()
255 * transport_remove_device - remove the visibility of a device
257 * @dev: generic device to remove
262 * do remove and destroy as separate operations, use
278 if (tclass->remove ! in transport_destroy_classdev()
[all...]
H A Dfaux.c60 if (ret && faux_ops && faux_ops->remove) in faux_probe()
61 faux_ops->remove(faux_dev); in faux_probe()
74 if (faux_ops && faux_ops->remove) in faux_remove()
75 faux_ops->remove(faux_dev); in faux_remove()
82 .remove = faux_remove,
/linux/drivers/net/ethernet/stmicro/stmmac/
H A Ddwmac-dwc-qos-eth.c286 void (*remove)(struct platform_device *pdev); member
297 .remove = tegra_eqos_remove,
350 goto remove; in dwc_eth_dwmac_probe()
354 goto remove; in dwc_eth_dwmac_probe()
358 remove: in dwc_eth_dwmac_probe()
359 if (data->remove) in dwc_eth_dwmac_probe()
360 data->remove(pdev); in dwc_eth_dwmac_probe()
371 if (data->remove) in dwc_eth_dwmac_remove()
372 data->remove(pdev); in dwc_eth_dwmac_remove()
385 .remove = dwc_eth_dwmac_remove,
/linux/drivers/dma/dw/
H A Dinternal.h52 int (*remove)(struct dw_dma_chip *chip); member
60 .remove = dw_dma_remove,
78 .remove = idma32_dma_remove,
96 .remove = idma32_dma_remove,
/linux/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1q_mc_ul.sh396 defer mc_cli remove "$swp2" 192.0.2.100 "$GROUP4" "$swp1" "$swp3"
399 defer mc_cli remove "$swp2" 2001:db8:4::1 "$GROUP6" "$swp1" "$swp3"
405 defer mc_cli remove "$swp2" 0.0.0.0 "$GROUP4" lo10
408 defer mc_cli remove "$swp3" 0.0.0.0 "$GROUP4" lo10
411 defer mc_cli remove "$swp2" :: "$GROUP6" lo10
414 defer mc_cli remove "$swp3" :: "$GROUP6" lo10
422 defer mc_cli remove "$IPMR" 192.0.2.33 "$GROUP4" "$swp2" "$swp3"
425 defer mc_cli remove "$IPMR" 2001:db8:4::1 "$GROUP6" "$swp2" "$swp3"
435 defer mc_cli remove lo 192.0.2.120 "$GROUP4" "$swp2" "$swp3"
438 defer mc_cli remove l
[all...]
/linux/scripts/
H A Dcheckincludes.pl4 # checkincludes: find/remove files included more than once
10 # to remove them in place. Note that this will not take into
20 print "To remove duplicated includes in place use -r\n";
24 my $remove = 0;
33 $remove = 1;
59 if (!$remove) {
H A Dprune-kernel20 new-kernel-pkg --remove $f
22 kernel-install remove $f
/linux/drivers/vfio/mdev/
H A Dmdev_driver.c30 if (drv->remove) in mdev_remove()
31 drv->remove(to_mdev_device(dev)); in mdev_remove()
46 .remove = mdev_remove,
/linux/drivers/mtd/nand/raw/
H A Dplat_nand.c117 if (pdata->ctrl.remove) in plat_nand_probe()
118 pdata->ctrl.remove(pdev); in plat_nand_probe()
135 if (pdata->ctrl.remove) in plat_nand_remove()
136 pdata->ctrl.remove(pdev); in plat_nand_remove()
147 .remove = plat_nand_remove,
/linux/Documentation/driver-api/
H A Dvfio-mediated-device.rst36 * Add a mediated device to and remove it from a mediated bus driver
37 * Add a mediated device to and remove it from an IOMMU group
54 | | driver | | probe()/remove() | | APIs
94 * @remove: called when device removed
99 void (*remove) (struct mdev_device *dev);
130 When the driver needs to remove itself it calls::
134 Which will unbind and destroy all the created mdevs and remove the sysfs files.
229 |--- remove
233 * remove (write only)
235 Writing '1' to the 'remove' fil
[all...]
/linux/drivers/net/wireguard/selftest/
H A Dallowedips.c463 #define remove(version, mem, ipa, ipb, ipc, ipd, cidr) \ macro
600 /* Must be an exact match to remove */ in wg_allowedips_selftest()
601 remove(4, a, 192, 0, 0, 0, 32); in wg_allowedips_selftest()
604 test_boolean(!remove(4, NULL, 192, 0, 0, 0, 24)); in wg_allowedips_selftest()
607 test_boolean(!remove(4, b, 192, 0, 0, 0, 24)); in wg_allowedips_selftest()
610 test_boolean(remove(4, b, 192, 0, 0, 0, 33) == -EINVAL); in wg_allowedips_selftest()
612 remove(4, a, 192, 0, 0, 0, 24); in wg_allowedips_selftest()
614 remove(4, a, 1, 0, 0, 0, 32); in wg_allowedips_selftest()
616 /* Must be an exact match to remove */ in wg_allowedips_selftest()
617 remove( in wg_allowedips_selftest()
[all...]
/linux/drivers/gpu/drm/display/
H A Ddrm_dp_aux_bus.c89 if (aux_ep_drv->remove) in dp_aux_ep_probe()
90 aux_ep_drv->remove(aux_ep); in dp_aux_ep_probe()
98 * dp_aux_ep_remove() - The remove function for the dp_aux_bus.
99 * @dev: The device to remove.
101 * Calls through to the endpoint driver remove.
108 if (aux_ep_drv->remove) in dp_aux_ep_remove()
109 aux_ep_drv->remove(aux_ep); in dp_aux_ep_remove()
135 .remove = dp_aux_ep_remove,
/linux/sound/hda/core/ext/
H A Dbus.c64 * snd_hdac_ext_bus_device_remove - remove HD-audio extended codec base devices
72 * we need to remove all the codec devices objects created in the in snd_hdac_ext_bus_device_remove()
103 return (get_hdrv(dev))->remove(get_hdev(dev)); in hdac_ext_drv_remove()
124 if (drv->remove) in snd_hda_ext_driver_register()
125 drv->driver.remove = hdac_ext_drv_remove; in snd_hda_ext_driver_register()
/linux/drivers/zorro/
H A Dzorro-driver.c68 if (drv->remove) in zorro_device_remove()
69 drv->remove(z); in zorro_device_remove()
98 * gives it a chance to clean up by calling its remove() function for
160 .remove = zorro_device_remove,
/linux/drivers/staging/vc04_services/interface/vchiq_arm/
H A Dvchiq_bus.c46 if (driver->remove) in vchiq_bus_remove()
47 driver->remove(device); in vchiq_bus_remove()
55 .remove = vchiq_bus_remove,
/linux/drivers/nubus/
H A Dbus.c31 if (ndrv->remove) in nubus_device_remove()
32 ndrv->remove(to_nubus_board(dev)); in nubus_device_remove()
38 .remove = nubus_device_remove,
/linux/arch/s390/purgatory/
H A DMakefile40 OBJCOPYFLAGS_purgatory.ro += --remove-section='*debug*'
41 OBJCOPYFLAGS_purgatory.ro += --remove-section='.comment'
42 OBJCOPYFLAGS_purgatory.ro += --remove-section='.note.*'
/linux/drivers/hid/bpf/progs/
H A DREADME62 ACTION!="add|remove", GOTO="hid_bpf_end"
67 ACTION=="remove",ENV{MODALIAS}=="hid:b0003g0001v000028BDp0000095A", RUN{program}+="/usr/local/bin/udev-hid-bpf remove $sys$devpath "
70 ACTION=="remove",ENV{MODALIAS}=="hid:b0003g0001v000028BDp0000095B", RUN{program}+="/usr/local/bin/udev-hid-bpf remove $sys$devpath "
/linux/drivers/of/unittest-data/
H A Dtestcases_common.dtsi7 prop-remove = "world";
9 node-remove {
/linux/Documentation/translations/zh_CN/PCI/
H A Dsysfs-pci.rst29 | |-- remove
54 remove 从内核的列表中删除设备 (ascii, wo)
91 remove "文件是用来移除PCI设备的,通过向该文件写入一个非零的整数。这并不涉及任何形式的热插
/linux/tools/testing/selftests/net/
H A Dbpf_offload.py144 files.remove(f)
182 progs.remove(p)
370 def remove(self): member in BpfNetdevSimDev
371 super().remove()
372 devs.remove(self)
389 def remove(self): member in BpfNetdevSim
531 dev.remove()
658 start_test("Test multi-attachment XDP - remove without mode...")
685 start_test("Test multi-attachment XDP - device remove...")
686 simdev.remove()
[all...]
/linux/drivers/firmware/google/
H A Dcoreboot_table.c61 if (driver->remove) in coreboot_bus_remove()
62 driver->remove(device); in coreboot_bus_remove()
77 .remove = coreboot_bus_remove,
223 .remove = coreboot_table_remove,
/linux/sound/hda/common/
H A Dbind.c141 if (driver->ops->remove) in hda_codec_driver_probe()
142 driver->ops->remove(codec); in hda_codec_driver_probe()
169 if (driver->ops->remove) in hda_codec_driver_remove()
170 driver->ops->remove(codec); in hda_codec_driver_remove()
189 drv->core.driver.remove = hda_codec_driver_remove; in __hda_codec_driver_register()
/linux/drivers/gpu/drm/tegra/
H A Drgb.c241 goto remove; in tegra_dc_rgb_probe()
248 goto remove; in tegra_dc_rgb_probe()
254 goto remove; in tegra_dc_rgb_probe()
261 goto remove; in tegra_dc_rgb_probe()
279 remove: in tegra_dc_rgb_probe()
/linux/drivers/uio/
H A Duio_aec.c123 static void remove(struct pci_dev *pdev) in remove() function
143 .remove = remove,

12345678910>>...173