/linux-4.4.14/drivers/staging/vt6656/ |
D | TODO | 2 - remove __cplusplus ifdefs -- done 3 - remove kernel version compatibility wrappers 4 - remove support for older wireless extensions 6 - remove PRINT_K() macro
|
/linux-4.4.14/scripts/ |
D | checkincludes.pl | 23 my $remove = 0; 32 $remove = 1; 56 if (!$remove) {
|
D | bloat-o-meter | 33 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 variable 42 remove += 1 62 (add, remove, grow, shrink, up, -down, up-down))
|
/linux-4.4.14/drivers/base/ |
D | transport_class.c | 97 atc->tclass.remove = anon_transport_dummy_function; in anon_transport_class_register() 222 if (tclass->remove) in transport_remove_classdev() 223 tclass->remove(tcont, dev, classdev); in transport_remove_classdev() 225 if (tclass->remove != anon_transport_dummy_function) { in transport_remove_classdev() 259 if (tclass->remove != anon_transport_dummy_function) in transport_destroy_classdev()
|
D | isa.c | 52 if (isa_driver->remove) in isa_bus_remove() 53 return isa_driver->remove(dev, to_isa_dev(dev)->id); in isa_bus_remove() 90 .remove = isa_bus_remove,
|
D | driver.c | 156 (drv->bus->remove && drv->remove) || in driver_register()
|
D | dd.c | 689 if (dev->bus && dev->bus->remove) in __device_release_driver() 690 dev->bus->remove(dev); in __device_release_driver() 691 else if (drv->remove) in __device_release_driver() 692 drv->remove(dev); in __device_release_driver()
|
/linux-4.4.14/drivers/mtd/nand/ |
D | plat_nand.c | 107 if (pdata->ctrl.remove) in plat_nand_probe() 108 pdata->ctrl.remove(pdev); in plat_nand_probe() 121 if (pdata->ctrl.remove) in plat_nand_remove() 122 pdata->ctrl.remove(pdev); in plat_nand_remove() 135 .remove = plat_nand_remove,
|
/linux-4.4.14/drivers/staging/wilc1000/ |
D | TODO | 2 - remove the defined feature as kernel versions 3 - remove OS wrapper functions 4 - remove custom debug and tracing functions
|
/linux-4.4.14/Documentation/DocBook/ |
D | scsi.xml.db | 58 API-scsi-remove-single-device 81 API-scsi-remove-device 82 API-scsi-remove-target 84 API-scsi-remove-host 95 API-fc-remove-host 117 API-sas-remove-children 118 API-sas-remove-host 140 API-sas-rphy-remove 154 API-srp-remove-host
|
D | filesystems.xml.db | 45 API---remove-inode-hash 193 API-eventfd-ctx-remove-wait-queue 201 API-sysfs-remove-file-ns 202 API-sysfs-remove-file-from-group 204 API-sysfs-remove-bin-file 206 API-sysfs-remove-link 213 API-debugfs-remove 214 API-debugfs-remove-recursive
|
D | device-drivers.xml.db | 266 API-devres-remove 271 API-devres-remove-group 274 API-devm-remove-action 295 API-driver-remove-file 301 API-device-remove-file 302 API-device-remove-file-self 304 API-device-remove-bin-file 339 API-class-compat-remove-link 352 API-transport-remove-device 419 API-fence-remove-callback [all …]
|
D | genericirq.xml.db | 9 API-irq-remove-generic-chip 32 API-remove-irq
|
/linux-4.4.14/Documentation/ |
D | sgi-ioc4.txt | 27 needs to provide a probe and remove function, which are invoked 29 IOC4 function probe and remove operations isn't precisely the same 30 as PCI device probe and remove operations, but is logically the 39 remove functions. 45 probe, and remove functions.
|
D | pnp.txt | 113 - use this function to remove a PnP protocol from the Plug and Play Layer 156 - call this to remove a device from the Plug and Play Layer. 197 2.) Optionally define probe and remove functions. It may make sense not to 222 .remove = serial_pnp_remove,
|
/linux-4.4.14/arch/arm/mach-integrator/ |
D | lm.c | 38 if (lmdrv->remove) in lm_bus_remove() 39 lmdrv->remove(lmdev); in lm_bus_remove() 47 .remove = lm_bus_remove,
|
D | lm.h | 12 void (*remove)(struct lm_device *); member
|
/linux-4.4.14/drivers/cpufreq/ |
D | scpi-cpufreq.c | 41 static int scpi_opp_table_ops(struct device *cpu_dev, bool remove) in scpi_opp_table_ops() argument 54 if (remove) in scpi_opp_table_ops() 118 .remove = scpi_cpufreq_remove,
|
D | vexpress-spc-cpufreq.c | 65 .remove = ve_spc_cpufreq_remove,
|
/linux-4.4.14/drivers/uio/ |
D | uio_pci_generic.c | 108 static void remove(struct pci_dev *pdev) in remove() function 121 .remove = remove,
|
D | uio_aec.c | 137 static void remove(struct pci_dev *pdev) in remove() function 159 .remove = remove,
|
/linux-4.4.14/arch/arm/mach-shmobile/ |
D | regulator-quirk-rcar-gen2.c | 88 goto remove; in regulator_quirk_notify() 105 goto remove; in regulator_quirk_notify() 109 remove: in regulator_quirk_notify()
|
/linux-4.4.14/drivers/lightnvm/ |
D | core.c | 508 static int __nvm_configure_remove(struct nvm_ioctl_remove *remove) in __nvm_configure_remove() argument 517 if (!strcmp(remove->tgtname, t->disk->disk_name)) { in __nvm_configure_remove() 526 pr_err("nvm: target \"%s\" doesn't exist.\n", remove->tgtname); in __nvm_configure_remove() 564 struct nvm_ioctl_remove remove; in nvm_configure_remove() local 568 ret = sscanf(val, "%c %256s", &opcode, remove.tgtname); in nvm_configure_remove() 574 remove.flags = 0; in nvm_configure_remove() 576 return __nvm_configure_remove(&remove); in nvm_configure_remove() 773 struct nvm_ioctl_remove remove; in nvm_ioctl_dev_remove() local 778 if (copy_from_user(&remove, arg, sizeof(struct nvm_ioctl_remove))) in nvm_ioctl_dev_remove() 781 remove.tgtname[DISK_NAME_LEN - 1] = '\0'; in nvm_ioctl_dev_remove() [all …]
|
D | Kconfig | 23 Exposes a debug management interface to create/remove targets at: 27 It is required to create/remove targets without IOCTLs.
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-pktcdvd | 19 remove (0200) Write the pktcdvd device id (major:minor) 20 to it to remove the pktcdvd device. 71 # remove device, using pktcdvd0 device id 253:0 72 echo "253:0" >/sys/class/pktcdvd/remove
|
D | sysfs-devices-memory | 7 added or removed dynamically to represent hot-add/remove 9 Users: hotplug memory add/remove tools 20 potentially expensive hot-remove memory operation 21 Users: hotplug memory remove tools 60 Users: hotplug memory remove tools
|
D | sysfs-bus-rbd | 19 $ echo <dev-id> > /sys/bus/rbd/remove 38 Usage is the same as for /sys/bus/rbd/remove. If present, 40 /sys/bus/rbd/remove if /sys/bus/rbd/remove_single_major is
|
D | configfs-usb-gadget-ffs | 4 Description: The purpose of this directory is to create and remove it.
|
/linux-4.4.14/drivers/zorro/ |
D | zorro-driver.c | 70 if (drv->remove) in zorro_device_remove() 71 drv->remove(z); in zorro_device_remove() 169 .remove = zorro_device_remove,
|
/linux-4.4.14/drivers/mmc/core/ |
D | sdio.c | 655 goto remove; in mmc_sdio_init_card() 683 goto remove; in mmc_sdio_init_card() 707 goto remove; in mmc_sdio_init_card() 714 goto remove; in mmc_sdio_init_card() 746 goto remove; in mmc_sdio_init_card() 753 goto remove; in mmc_sdio_init_card() 762 goto remove; in mmc_sdio_init_card() 774 goto remove; in mmc_sdio_init_card() 781 remove: in mmc_sdio_init_card() 1046 .remove = mmc_sdio_remove, [all …]
|
/linux-4.4.14/arch/cris/boot/ |
D | Makefile | 6 objcopyflags-$(CONFIG_ETRAX_ARCH_V32) += --remove-section=.bss --remove-section=.note.gnu.build-id
|
/linux-4.4.14/drivers/staging/dgnc/ |
D | TODO | 2 * remove unnecessary comments 3 * remove unnecessary error messages. Example kzalloc() has its
|
/linux-4.4.14/drivers/staging/vt6655/ |
D | TODO | 2 - remove __cplusplus ifdefs -- done 7 - remove dead code
|
/linux-4.4.14/drivers/rapidio/ |
D | rio-driver.c | 124 if (rdrv->remove) in rio_device_remove() 125 rdrv->remove(rdev); in rio_device_remove() 231 .remove = rio_device_remove,
|
/linux-4.4.14/drivers/staging/rtl8723au/ |
D | TODO | 2 - find and remove code valid only for 5 HGz. Many of the obvious 4 - find and remove any code for other chips that is left over
|
/linux-4.4.14/sound/aoa/soundbus/ |
D | core.c | 113 if (dev->driver && drv->remove) in soundbus_device_remove() 114 drv->remove(soundbus_dev); in soundbus_device_remove() 135 .remove = soundbus_device_remove,
|
/linux-4.4.14/drivers/pnp/ |
D | card.c | 63 if (drv->remove) in card_remove_first() 64 drv->remove(dev->card_link); in card_remove_first() 65 drv->link.remove = &card_remove; in card_remove_first() 380 drv->link.remove = &card_remove; in pnp_release_card_device() 382 drv->link.remove = &card_remove_first; in pnp_release_card_device() 422 drv->link.remove = &card_remove_first; in pnp_register_card_driver()
|
D | driver.c | 130 if (drv->remove) in pnp_device_remove() 131 drv->remove(pnp_dev); in pnp_device_remove() 256 .remove = pnp_device_remove,
|
/linux-4.4.14/include/linux/ |
D | transport_class.h | 24 int (*remove)(struct transport_container *, struct device *, member 34 .remove = rm, \
|
D | isa.h | 14 int (*remove)(struct device *, unsigned int); member
|
D | btree-type.h | 57 static inline void *BTREE_FN(remove)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key) in BTREE_FN() argument 99 static inline void *BTREE_FN(remove)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key) in BTREE_FN() argument
|
D | pcieport_if.h | 47 void (*remove) (struct pcie_device *dev); member
|
D | ioc3.h | 61 int (*remove) (struct ioc3_submodule *, struct ioc3_driver_data *); member
|
D | ntb_transport.h | 56 void (*remove)(struct device *client_dev); member
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos_drm_core.c | 81 if (subdrv->remove) in exynos_drm_device_subdrv_remove() 82 subdrv->remove(dev, subdrv->dev); in exynos_drm_device_subdrv_remove()
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | bttv-gpio.c | 66 if (sub->remove) in bttv_sub_remove() 67 sub->remove(sdev); in bttv_sub_remove() 75 .remove = bttv_sub_remove,
|
/linux-4.4.14/drivers/sh/superhyway/ |
D | superhyway.c | 158 if (shyway_drv && shyway_drv->remove) { in superhyway_device_remove() 159 shyway_drv->remove(shyway_dev); in superhyway_device_remove() 215 .remove = superhyway_device_remove,
|
/linux-4.4.14/tools/power/acpi/ |
D | Makefile.config | 91 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
|
/linux-4.4.14/drivers/staging/rtl8188eu/ |
D | TODO | 2 - find and remove remaining code valid only for 5 HGz. Most of the obvious 4 - find and remove any code for other chips that is left over
|
/linux-4.4.14/arch/um/drivers/ |
D | net_kern.c | 363 if (lp->remove != NULL) in net_device_release() 364 (*lp->remove)(&lp->user); in net_device_release() 463 .remove = transport->user->remove, in eth_configure() 501 if (transport->user->remove != NULL) in eth_configure() 502 (*transport->user->remove)(&lp->user); in eth_configure() 741 .remove = net_remove, 834 if (lp->remove != NULL) in close_devices() 835 (*lp->remove)(&lp->user); in close_devices()
|
D | mconsole_kern.h | 24 int (*remove)(int, char **); member
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-buildid-cache.txt | 15 This command manages the build-id cache. It can add, remove, update and purge 38 --remove=:: 50 Update specified file of the cache. Note that this doesn't remove
|
/linux-4.4.14/drivers/usb/common/ |
D | ulpi.c | 71 if (drv->remove) in ulpi_remove() 72 drv->remove(to_ulpi_dev(dev)); in ulpi_remove() 82 .remove = ulpi_remove,
|
/linux-4.4.14/sound/hda/ext/ |
D | hdac_ext_bus.c | 226 return (get_edrv(dev))->remove(get_edev(dev)); in hdac_ext_drv_remove() 247 if (drv->remove) in snd_hda_ext_driver_register() 248 drv->hdac.driver.remove = hdac_ext_drv_remove; in snd_hda_ext_driver_register()
|
/linux-4.4.14/drivers/of/unittest-data/ |
D | testcases.dts | 6 prop-remove = "world"; 7 node-remove {
|
/linux-4.4.14/drivers/usb/host/whci/ |
D | asl.c | 130 if (!qset->remove) in process_qset() 138 if (qset->remove && qset->ntds == 0) { in process_qset() 285 if (!qset->in_sw_list && !qset->remove) in asl_urb_enqueue() 350 qset->remove = 1; in asl_qset_delete()
|
D | pzl.c | 136 if (!qset->remove) in pzl_process_qset() 143 if (qset->remove && qset->ntds == 0) { in pzl_process_qset() 313 if (!qset->in_sw_list && !qset->remove) in pzl_urb_enqueue() 379 qset->remove = 1; in pzl_qset_delete()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | vio.c | 81 if (drv->remove) in vio_device_remove() 82 return drv->remove(vdev); in vio_device_remove() 119 .remove = vio_device_remove, 362 .remove = vio_remove, 393 .remove = vio_remove,
|
/linux-4.4.14/Documentation/filesystems/ |
D | sysfs-pci.txt | 15 | |-- remove 40 remove remove device from kernel's list (ascii, wo) 82 The 'remove' file is used to remove the PCI device, by writing a non-zero
|
/linux-4.4.14/arch/x86/platform/olpc/ |
D | olpc-xo1-pm.c | 175 .remove = xo1_pm_remove, 183 .remove = xo1_pm_remove,
|
/linux-4.4.14/drivers/misc/mic/bus/ |
D | cosm_bus.c | 41 drv->remove(dev); in cosm_dev_remove() 48 .remove = cosm_dev_remove,
|
D | mic_bus.c | 113 drv->remove(dev); in mbus_dev_remove() 123 .remove = mbus_dev_remove,
|
D | scif_bus.c | 107 drv->remove(dev); in scif_dev_remove() 117 .remove = scif_dev_remove,
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | intf.c | 83 intf->remove(&priv->dev, dev_ctx->context); in mlx4_remove_device() 93 if (!intf->add || !intf->remove) in mlx4_register_interface() 167 dev_ctx->intf->remove(dev, dev_ctx->context); in mlx4_do_bond()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | hecubafb.c | 291 if (par->board->remove) in hecubafb_remove() 292 par->board->remove(par); in hecubafb_remove() 301 .remove = hecubafb_remove,
|
/linux-4.4.14/Documentation/sound/alsa/soc/ |
D | machine.txt | 20 int (*remove)(struct platform_device *pdev); 38 probe()/remove() 40 probe/remove are optional. Do any machine specific probe here.
|
/linux-4.4.14/Documentation/i2c/ |
D | upgrading-clients | 115 Add the probe and remove methods to the i2c_driver, as so: 119 + .remove = example_remove, 173 And remove the change after our client is attached, as the driver no 198 can also remove the ret variable as it is not needed for any 278 .remove = example_remove,
|
/linux-4.4.14/sound/soc/pxa/ |
D | hx4700.c | 168 .remove = hx4700_card_remove, 219 .remove = hx4700_audio_remove,
|
/linux-4.4.14/drivers/net/ethernet/emulex/benet/ |
D | be_roce.c | 104 if (ocrdma_drv && ocrdma_drv->remove && adapter->ocrdma_dev) in _be_roce_dev_remove() 105 ocrdma_drv->remove(adapter->ocrdma_dev); in _be_roce_dev_remove()
|
D | be_roce.h | 59 void (*remove) (struct ocrdma_dev *); member
|
/linux-4.4.14/drivers/staging/board/ |
D | TODO | 2 * remove staging board code when no more platform devices are needed
|
/linux-4.4.14/Documentation/devicetree/ |
D | overlay-notes.txt | 95 2. Call of_overlay_destroy() to remove and cleanup the overlay previously 99 Finally, if you need to remove all overlays in one-go, just call 100 of_overlay_destroy_all() which will remove every single one in the correct
|
/linux-4.4.14/drivers/mcb/ |
D | mcb-core.c | 77 mdrv->remove(mdev); in mcb_remove() 98 .remove = mcb_remove, 114 if (!drv->probe || !drv->remove) in __mcb_register_driver()
|
/linux-4.4.14/drivers/s390/cio/ |
D | scm.c | 35 return scmdrv->remove ? scmdrv->remove(scmdev) : -ENODEV; in scmdev_remove() 46 .remove = scmdev_remove,
|
/linux-4.4.14/Documentation/trace/ |
D | events-power.txt | 68 The PM QoS events are used for QoS add/update/remove request and for 87 And, there are also events used for device PM QoS add/update/remove request. 93 The first parameter gives the device name which tries to add/update/remove
|
/linux-4.4.14/drivers/mtd/nand/brcmnand/ |
D | brcmstb_nand.c | 33 .remove = brcmnand_remove,
|
/linux-4.4.14/sound/soc/codecs/ |
D | ak5386.c | 74 .remove = ak5386_soc_remove, 205 .remove = ak5386_remove,
|
D | es8328-spi.c | 43 .remove = es8328_spi_remove,
|
D | ssm2602-spi.c | 41 .remove = ssm2602_spi_remove,
|
D | adav803.c | 41 .remove = adav803_remove,
|
D | adav801.c | 44 .remove = adav80x_spi_remove,
|
D | cs4271-spi.c | 48 .remove = cs4271_spi_remove,
|
D | tlv320aic23-spi.c | 48 .remove = aic23_spi_remove,
|
D | es8328-i2c.c | 52 .remove = es8328_i2c_remove,
|
D | wm8804-spi.c | 49 .remove = wm8804_spi_remove
|
D | cs42l51-i2c.c | 51 .remove = cs42l51_i2c_remove,
|
D | cs4271-i2c.c | 54 .remove = cs4271_i2c_remove,
|
D | adau1781-i2c.c | 50 .remove = adau1781_i2c_remove,
|
D | ad193x-i2c.c | 49 .remove = ad193x_i2c_remove,
|
D | adau1977-i2c.c | 51 .remove = adau1977_i2c_remove,
|
D | adau1761-i2c.c | 52 .remove = adau1761_i2c_remove,
|
D | ssm2602-i2c.c | 58 .remove = ssm2602_i2c_remove,
|
D | wm8804-i2c.c | 56 .remove = wm8804_i2c_remove,
|
D | tlv320aic23-i2c.c | 59 .remove = tlv320aic23_i2c_remove,
|
D | ics43432.c | 69 .remove = ics43432_remove,
|
D | cs42xx8-i2c.c | 56 .remove = cs42xx8_i2c_remove,
|
D | pcm512x-spi.c | 63 .remove = pcm512x_spi_remove,
|
D | ad1980.c | 300 .remove = ad1980_soc_remove, 328 .remove = ad1980_remove,
|
D | wm8782.c | 77 .remove = wm8782_remove,
|
D | ad193x-spi.c | 54 .remove = ad193x_spi_remove,
|
D | dmic.c | 79 .remove = dmic_dev_remove,
|
D | wm8727.c | 81 .remove = wm8727_remove,
|
D | pcm512x-i2c.c | 66 .remove = pcm512x_i2c_remove,
|
D | ad73311.c | 82 .remove = ad73311_remove,
|
D | adau1781-spi.c | 67 .remove = adau1781_spi_remove,
|
D | adau1977-spi.c | 68 .remove = adau1977_spi_remove,
|
D | adau1761-spi.c | 69 .remove = adau1761_spi_remove,
|
D | spdif_receiver.c | 80 .remove = spdif_dir_remove,
|
D | ads117x.c | 84 .remove = ads117x_remove,
|
D | wm8728.c | 278 .remove = wm8728_spi_remove, 324 .remove = wm8728_i2c_remove,
|
D | ak4554.c | 99 .remove = ak4554_soc_remove,
|
D | spdif_transmitter.c | 80 .remove = spdif_dit_remove,
|
D | gtm601.c | 87 .remove = gtm601_platform_remove,
|
/linux-4.4.14/drivers/uwb/ |
D | umc-bus.c | 161 umc_driver->remove(umc); in umc_device_remove() 193 .remove = umc_device_remove,
|
/linux-4.4.14/net/wireless/ |
D | wext-compat.c | 434 const u8 *addr, bool remove, bool tx_key, in __cfg80211_set_encryption() argument 470 if (remove) { in __cfg80211_set_encryption() 574 const u8 *addr, bool remove, bool tx_key, in cfg80211_set_encryption() argument 581 remove, tx_key, idx, params); in cfg80211_set_encryption() 594 bool remove = false; in cfg80211_wext_siwencode() local 618 remove = true; in cfg80211_wext_siwencode() 639 else if (!remove) in cfg80211_wext_siwencode() 642 return cfg80211_set_encryption(rdev, dev, false, NULL, remove, in cfg80211_wext_siwencode() 656 bool remove = false; in cfg80211_wext_siwencodeext() local 672 remove = true; in cfg80211_wext_siwencodeext() [all …]
|
/linux-4.4.14/include/video/ |
D | hecubafb.h | 43 void (*remove)(struct hecubafb_par *); member
|
/linux-4.4.14/drivers/base/power/ |
D | clock_ops.c | 182 goto remove; in pm_clk_remove() 186 goto remove; in pm_clk_remove() 192 remove: in pm_clk_remove()
|
/linux-4.4.14/drivers/hid/ |
D | hid-wiimote-modules.c | 108 .remove = NULL, 186 .remove = wiimod_rumble_remove, 286 .remove = wiimod_battery_remove, 403 .remove = wiimod_led_remove, 409 .remove = wiimod_led_remove, 415 .remove = wiimod_led_remove, 421 .remove = wiimod_led_remove, 543 .remove = wiimod_accel_remove, 805 .remove = wiimod_ir_remove, 1002 .remove = wiimod_nunchuk_remove, [all …]
|
/linux-4.4.14/drivers/mfd/ |
D | mcp-core.c | 44 drv->remove(mcp); in mcp_bus_remove() 52 .remove = mcp_bus_remove,
|
/linux-4.4.14/drivers/ntb/ |
D | ntb.c | 220 client->ops.remove(client, ntb); in ntb_remove() 237 .remove = ntb_remove,
|
/linux-4.4.14/include/linux/soc/qcom/ |
D | smd.h | 44 void (*remove)(struct qcom_smd_device *dev); member
|
/linux-4.4.14/drivers/power/reset/ |
D | restart-poweroff.c | 54 .remove = restart_poweroff_remove,
|
D | rmobile-reset.c | 80 .remove = rmobile_reset_remove,
|
D | gpio-poweroff.c | 90 .remove = gpio_poweroff_remove,
|
/linux-4.4.14/drivers/staging/comedi/ |
D | TODO | 4 - remove all wrappers
|
/linux-4.4.14/drivers/target/ |
D | target_core_tmr.c | 81 bool remove = true, send_tas; in core_tmr_handle_tas_abort() local 90 remove = false; in core_tmr_handle_tas_abort() 94 transport_cmd_finish_abort(cmd, remove); in core_tmr_handle_tas_abort()
|
/linux-4.4.14/drivers/ide/ |
D | ide.c | 138 if (drv->remove) in generic_ide_remove() 139 drv->remove(drive); in generic_ide_remove() 158 .remove = generic_ide_remove,
|
/linux-4.4.14/arch/mips/sgi-ip22/ |
D | ip22-gio.c | 150 if (dev->driver && drv->remove) in gio_device_remove() 151 drv->remove(gio_dev); in gio_device_remove() 380 .remove = gio_device_remove,
|
/linux-4.4.14/drivers/pci/pcie/ |
D | portdrv_core.c | 531 if (driver && driver->remove) { in pcie_port_remove_service() 534 driver->remove(pciedev); in pcie_port_remove_service() 563 new->driver.remove = pcie_port_remove_service; in pcie_port_service_register()
|
/linux-4.4.14/drivers/misc/ |
D | tifm_core.c | 100 if (dev->driver && drv->remove) { in tifm_device_remove() 103 drv->remove(sock); in tifm_device_remove() 162 .remove = tifm_device_remove,
|
D | bmp085-spi.c | 72 .remove = bmp085_spi_remove
|
D | bmp085-i2c.c | 73 .remove = bmp085_i2c_remove,
|
/linux-4.4.14/drivers/md/persistent-data/ |
D | Makefile | 11 dm-btree-remove.o \
|
/linux-4.4.14/drivers/misc/mic/card/ |
D | mic_virtio.c | 515 static void mic_scan_devices(struct mic_driver *mdrv, bool remove) in mic_scan_devices() argument 547 if (remove) in mic_scan_devices() 553 if (!ret && !remove) in mic_scan_devices() 555 if (remove) { in mic_scan_devices() 565 if (!remove) in mic_scan_devices()
|
/linux-4.4.14/Documentation/driver-model/ |
D | driver.txt | 36 .remove = eepro100_remove, 68 .remove = eepro100_remove, 167 int (*remove) (struct device * dev); 169 remove is called to unbind a driver from a device. This may be 210 This can then be used to add and remove the attribute from the
|
/linux-4.4.14/drivers/leds/ |
D | leds-rb532.c | 53 .remove = rb532_led_remove,
|
D | leds-sunfire.c | 223 .remove = sunfire_led_generic_remove, 231 .remove = sunfire_led_generic_remove,
|
D | leds-sead3.c | 68 .remove = sead3_led_remove,
|
/linux-4.4.14/drivers/bus/ |
D | simple-pm-bus.c | 47 .remove = simple_pm_bus_remove,
|
/linux-4.4.14/drivers/hwmon/pmbus/ |
D | tps40422.c | 56 .remove = pmbus_do_remove,
|
D | max20751.c | 56 .remove = pmbus_do_remove,
|
/linux-4.4.14/drivers/gpu/drm/tegra/ |
D | sor.c | 159 int (*remove)(struct tegra_sor *sor); member 1003 goto remove; in tegra_sor_debugfs_init() 1022 remove: in tegra_sor_debugfs_init() 2339 .remove = tegra_sor_hdmi_remove, 2450 goto remove; in tegra_sor_probe() 2457 goto remove; in tegra_sor_probe() 2464 goto remove; in tegra_sor_probe() 2471 goto remove; in tegra_sor_probe() 2478 goto remove; in tegra_sor_probe() 2485 goto remove; in tegra_sor_probe() [all …]
|
/linux-4.4.14/Documentation/ide/ |
D | 00-INDEX | 14 - using sysfs to remove and add IDE devices.
|
/linux-4.4.14/drivers/iio/pressure/ |
D | st_pressure_spi.c | 62 .remove = st_press_spi_remove,
|
D | st_pressure_i2c.c | 86 .remove = st_press_i2c_remove,
|
/linux-4.4.14/sound/soc/tegra/ |
D | tegra_rt5640.c | 154 .remove = tegra_rt5640_card_remove, 258 .remove = tegra_rt5640_remove,
|
D | tegra_alc5632.c | 149 .remove = tegra_alc5632_card_remove, 253 .remove = tegra_alc5632_remove,
|
D | tegra_max98090.c | 209 .remove = tegra_max98090_card_remove, 317 .remove = tegra_max98090_remove,
|
/linux-4.4.14/arch/arm/mach-nspire/ |
D | nspire.c | 48 .remove = nspire_clcd_remove,
|
/linux-4.4.14/drivers/usb/chipidea/ |
D | ci_hdrc_zevio.c | 61 .remove = ci_hdrc_zevio_remove,
|
/linux-4.4.14/drivers/net/wireless/ |
D | atmel_pci.c | 47 .remove = atmel_pci_remove,
|
/linux-4.4.14/drivers/iio/gyro/ |
D | bmg160_spi.c | 50 .remove = bmg160_spi_remove,
|
D | st_gyro_spi.c | 66 .remove = st_gyro_spi_remove,
|
D | bmg160_i2c.c | 64 .remove = bmg160_i2c_remove,
|
/linux-4.4.14/drivers/clk/ |
D | clk-max77686.c | 79 .remove = max77686_clk_remove,
|
D | clk-max77802.c | 90 .remove = max77802_clk_remove,
|
/linux-4.4.14/drivers/iio/magnetometer/ |
D | st_magn_spi.c | 64 .remove = st_magn_spi_remove,
|
/linux-4.4.14/sound/soc/txx9/ |
D | txx9aclc-generic.c | 66 .remove = __exit_p(txx9aclc_generic_remove),
|
D | txx9aclc-ac97.c | 157 .remove = txx9aclc_ac97_remove, 224 .remove = txx9aclc_ac97_dev_remove,
|
/linux-4.4.14/drivers/acpi/ |
D | hed.c | 79 .remove = acpi_hed_remove,
|
D | bus.c | 777 if (acpi_drv->ops.remove) in acpi_device_probe() 778 acpi_drv->ops.remove(acpi_dev); in acpi_device_probe() 800 if (acpi_drv->ops.remove) in acpi_device_remove() 801 acpi_drv->ops.remove(acpi_dev); in acpi_device_remove() 814 .remove = acpi_device_remove,
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_platform.c | 79 .remove = nouveau_platform_remove,
|
/linux-4.4.14/drivers/input/touchscreen/ |
D | cyttsp4_i2c.c | 77 .remove = cyttsp4_i2c_remove,
|
D | cyttsp_i2c.c | 80 .remove = cyttsp_i2c_remove,
|
D | tsc2004.c | 77 .remove = tsc2004_remove,
|
/linux-4.4.14/drivers/staging/xgifb/ |
D | TODO | 9 - remove useless/wrong/unused code...
|
/linux-4.4.14/drivers/iio/accel/ |
D | st_accel_spi.c | 70 .remove = st_accel_spi_remove,
|
D | bmc150-accel-spi.c | 84 .remove = bmc150_accel_remove,
|
/linux-4.4.14/Documentation/extcon/ |
D | porting-android-switch-class | 30 : remove second param('dev'). if edev has parent device, should store 56 2. (Recommended) remove print_state callback. 60 cable. Same for set_state. This way, you can remove the usage of
|
/linux-4.4.14/drivers/char/hw_random/ |
D | powernv-rng.c | 76 .remove = powernv_rng_remove,
|
/linux-4.4.14/include/linux/ulpi/ |
D | driver.h | 44 void (*remove)(struct ulpi *ulpi); member
|
/linux-4.4.14/drivers/cpuidle/ |
D | cpuidle-kirkwood.c | 76 .remove = kirkwood_cpuidle_remove,
|
/linux-4.4.14/arch/mips/include/asm/ |
D | cdmm.h | 45 int (*remove)(struct mips_cdmm_device *); member
|
D | gio_device.h | 27 void (*remove)(struct gio_device *); member
|
/linux-4.4.14/arch/um/include/shared/ |
D | net_user.h | 20 void (*remove)(void *); member
|
D | net_kern.h | 36 void (*remove)(void *); member
|
/linux-4.4.14/tools/usb/usbip/src/ |
D | usbip_detach.c | 66 remove(path); in detach_port()
|
/linux-4.4.14/sound/soc/cirrus/ |
D | simone.c | 79 .remove = simone_remove,
|
/linux-4.4.14/arch/h8300/kernel/ |
D | sim-console.c | 56 .remove = sim_remove,
|
/linux-4.4.14/sound/soc/samsung/ |
D | s3c24xx_simtec_tlv320aic23.c | 94 .remove = simtec_audio_remove,
|
/linux-4.4.14/net/batman-adv/ |
D | Kconfig | 26 more than one mesh node in the same LAN, you can safely remove 37 this option you can safely remove it and save some space.
|
/linux-4.4.14/drivers/usb/isp1760/ |
D | isp1760-if.c | 183 .remove = isp1761_pci_remove, 273 .remove = isp1760_plat_remove,
|
/linux-4.4.14/drivers/video/fbdev/omap/ |
D | lcd_inn1510.c | 104 .remove = innovator1510_panel_remove,
|
D | lcd_htcherald.c | 109 .remove = htcherald_panel_remove,
|
D | lcd_palmz71.c | 103 .remove = palmz71_panel_remove,
|
D | lcd_palmtt.c | 107 .remove = palmtt_panel_remove,
|
D | lcd_palmte.c | 101 .remove = palmte_panel_remove,
|
/linux-4.4.14/arch/s390/include/asm/ |
D | ccwgroup.h | 47 void (*remove) (struct ccwgroup_device *); member
|
/linux-4.4.14/drivers/platform/x86/ |
D | xo1-rfkill.c | 76 .remove = xo1_rfkill_remove,
|
/linux-4.4.14/drivers/staging/comedi/drivers/ |
D | ni_daq_dio24.c | 84 .remove = comedi_pcmcia_auto_unconfig,
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | system-bus.c | 407 if (drv->remove) in ps3_system_bus_remove() 408 result = drv->remove(dev); in ps3_system_bus_remove() 442 else if (drv->remove) { in ps3_system_bus_shutdown() 445 drv->remove(dev); in ps3_system_bus_shutdown() 485 .remove = ps3_system_bus_remove,
|
/linux-4.4.14/drivers/sn/ |
D | ioc3.c | 560 if(is->remove) in ioc3_unregister_submodule() 561 if(is->remove(is, idd)) in ioc3_unregister_submodule() 766 if(ioc3_submodules[id] && ioc3_submodules[id]->remove) in ioc3_remove() 767 if(ioc3_submodules[id]->remove(ioc3_submodules[id], in ioc3_remove() 808 .remove = ioc3_remove,
|
/linux-4.4.14/drivers/pwm/ |
D | pwm-lpss-platform.c | 69 .remove = pwm_lpss_remove_platform,
|
/linux-4.4.14/drivers/nfc/pn544/ |
D | mei.c | 82 .remove = pn544_mei_remove,
|
/linux-4.4.14/arch/parisc/include/asm/ |
D | parisc-device.h | 37 int (*remove) (struct parisc_device *dev); member
|
/linux-4.4.14/include/linux/mfd/ |
D | mcp.h | 52 void (*remove)(struct mcp *); member
|
/linux-4.4.14/sound/soc/qcom/ |
D | lpass-ipq806x.c | 104 .remove = asoc_qcom_lpass_cpu_platform_remove,
|
/linux-4.4.14/drivers/pcmcia/ |
D | sa1100_generic.c | 104 .remove = sa11x0_drv_pcmcia_remove,
|
/linux-4.4.14/drivers/hwtracing/intel_th/ |
D | pci.c | 79 .remove = intel_th_pci_remove,
|
/linux-4.4.14/drivers/staging/lustre/ |
D | TODO | 5 * Clean up libcfs layer. Ideally we can remove include/linux/libcfs entirely.
|