Searched refs:driver (Results 1 - 25 of 8858) sorted by relevance

1234567891011>>

/linux-master/drivers/tc/
H A DMakefile8 obj-$(CONFIG_TC) += tc.o tc-driver.o
/linux-master/mm/
H A Dzpool.c22 struct zpool_driver *driver; member in struct:zpool
31 * @driver: driver to register
33 void zpool_register_driver(struct zpool_driver *driver) argument
36 atomic_set(&driver->refcount, 0);
37 list_add(&driver->list, &drivers_head);
44 * @driver: driver to unregister.
46 * Module usage counting is used to prevent using a driver
50 * failure, the driver i
52 zpool_unregister_driver(struct zpool_driver *driver) argument
72 struct zpool_driver *driver; local
90 zpool_put_driver(struct zpool_driver *driver) argument
116 struct zpool_driver *driver = zpool_get_driver(type); local
149 struct zpool_driver *driver; local
[all...]
/linux-master/drivers/phy/broadcom/
H A Dphy-bcm-ns2-usbdrd.c67 struct ns2_phy_driver *driver; member in struct:ns2_phy_data
79 struct ns2_phy_driver *driver)
83 return readl_poll_timeout_atomic(driver->icfgdrd_regs + usb_reg,
91 struct ns2_phy_driver *driver = data->driver; local
94 val = readl(driver->icfgdrd_regs + ICFG_FSM_CTRL);
103 writel(val, driver->icfgdrd_regs + ICFG_FSM_CTRL);
111 struct ns2_phy_driver *driver = data->driver; local
114 val = readl(driver
78 pll_lock_stat(u32 usb_reg, int reg_mask, struct ns2_phy_driver *driver) argument
133 struct ns2_phy_driver *driver = data->driver; local
185 connect_change(struct ns2_phy_driver *driver) argument
230 struct ns2_phy_driver *driver; local
259 struct ns2_phy_driver *driver = dev_id; local
284 struct ns2_phy_driver *driver; local
[all...]
/linux-master/Documentation/networking/
H A Dmac80211-auth-assoc-deauth.txt11 participant driver
17 mac80211->driver: sta_state(AP, not-exists)
18 mac80211->driver: bss_info_changed(clear BSSID)
20 note over mac80211,driver
26 mac80211->driver: config(channel, channel type)
27 mac80211->driver: bss_info_changed(set BSSID, basic rate bitmap)
28 mac80211->driver: sta_state(AP, exists)
31 mac80211->driver: TX directed probe request
32 driver->mac80211: RX probe response
35 mac80211->driver
[all...]
/linux-master/drivers/dio/
H A DMakefile6 obj-y := dio.o dio-driver.o dio-sysfs.o
/linux-master/drivers/usb/serial/
H A Dbus.c20 struct usb_serial_driver *driver = to_usb_serial_driver(drv); local
26 if (driver == port->serial->type)
35 struct usb_serial_driver *driver; local
45 driver = port->serial->type;
46 if (driver->port_probe) {
47 retval = driver->port_probe(port);
64 driver->description, minor);
69 if (driver->port_remove)
70 driver->port_remove(port);
80 struct usb_serial_driver *driver; local
106 new_id_store(struct device_driver *driver, const char *buf, size_t count) argument
121 new_id_show(struct device_driver *driver, char *buf) argument
155 usb_serial_bus_register(struct usb_serial_driver *driver) argument
168 usb_serial_bus_deregister(struct usb_serial_driver *driver) argument
[all...]
/linux-master/drivers/firmware/arm_ffa/
H A DMakefile3 ffa-driver-y = driver.o
5 ffa-module-objs := $(ffa-bus-y) $(ffa-driver-y) $(ffa-transport-y)
/linux-master/drivers/vfio/mdev/
H A Dmdev_driver.c3 * MDEV driver
18 container_of(dev->driver, struct mdev_driver, driver);
28 container_of(dev->driver, struct mdev_driver, driver);
51 * mdev_register_driver - register a new MDEV driver
52 * @drv: the driver to register
61 /* initialize common driver fields */
62 drv->driver.bus = &mdev_bus_type;
63 return driver_register(&drv->driver);
[all...]
/linux-master/sound/soc/
H A Dsoc-dai.c57 if (dai->driver->ops &&
58 dai->driver->ops->set_sysclk)
59 ret = dai->driver->ops->set_sysclk(dai, clk_id, freq, dir);
83 if (dai->driver->ops &&
84 dai->driver->ops->set_clkdiv)
85 ret = dai->driver->ops->set_clkdiv(dai, div_id, div);
106 if (dai->driver->ops &&
107 dai->driver->ops->set_pll)
108 ret = dai->driver->ops->set_pll(dai, pll_id, source,
129 if (dai->driver
[all...]
H A Dsoc-component.c96 if (component->driver->set_sysclk)
97 ret = component->driver->set_sysclk(component, clk_id, source,
120 if (component->driver->set_pll)
121 ret = component->driver->set_pll(component, pll_id, source,
131 if (component->driver->seq_notifier)
132 component->driver->seq_notifier(component, type, subseq);
140 if (component->driver->stream_event)
141 ret = component->driver->stream_event(component, event);
151 if (component->driver->set_bias_level)
152 ret = component->driver
[all...]
/linux-master/drivers/tty/
H A Dttynull.c64 struct tty_driver *driver; local
67 driver = tty_alloc_driver(1,
71 if (IS_ERR(driver))
72 return PTR_ERR(driver);
77 driver->driver_name = "ttynull";
78 driver->name = "ttynull";
79 driver->type = TTY_DRIVER_TYPE_CONSOLE;
80 driver->init_termios = tty_std_termios;
81 driver->init_termios.c_oflag = OPOST | OCRNL | ONOCR | ONLRET;
82 tty_set_operations(driver,
[all...]
/linux-master/drivers/base/power/
H A Dgeneric_ops.c16 * If PM operations are defined for the @dev's driver and they include
22 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
35 * If PM operations are defined for the @dev's driver and they include
41 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
60 struct device_driver *drv = dev->driver;
75 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
87 const struct dev_pm_ops *pm = dev->driver
[all...]
/linux-master/net/wireless/
H A Dethtool.c12 if (pdev->driver)
13 strscpy(info->driver, pdev->driver->name,
14 sizeof(info->driver));
16 strscpy(info->driver, "N/A", sizeof(info->driver));
/linux-master/drivers/vfio/
H A Dcontainer.c81 const struct vfio_iommu_driver *driver)
85 return container->noiommu == (driver->ops == &vfio_noiommu_ops);
89 * IOMMU driver registration
93 struct vfio_iommu_driver *driver, *tmp; local
98 driver = kzalloc(sizeof(*driver), GFP_KERNEL);
99 if (!driver)
102 driver->ops = ops;
110 kfree(driver);
115 list_add(&driver
80 vfio_iommu_driver_allowed(struct vfio_container *container, const struct vfio_iommu_driver *driver) argument
125 struct vfio_iommu_driver *driver; local
188 struct vfio_iommu_driver *driver; local
235 __vfio_container_attach_groups(struct vfio_container *container, struct vfio_iommu_driver *driver, void *data) argument
263 struct vfio_iommu_driver *driver; local
331 struct vfio_iommu_driver *driver; local
419 struct vfio_iommu_driver *driver; local
471 struct vfio_iommu_driver *driver; local
537 struct vfio_iommu_driver *driver = container->iommu_driver; local
565 struct vfio_iommu_driver *driver = container->iommu_driver; local
[all...]
/linux-master/Documentation/networking/mac80211_hwsim/
H A Dhostapd.conf2 driver=nl80211
/linux-master/arch/x86/kernel/cpu/sgx/
H A DMakefile2 driver.o \
/linux-master/drivers/media/platform/marvell/
H A DMakefile3 cafe_ccic-y := cafe-driver.o
6 mmp_camera-y := mmp-driver.o
/linux-master/arch/m68k/emu/
H A Dnfcon.c2 * ARAnyM console driver
128 struct tty_driver *driver; local
135 driver = tty_alloc_driver(1, TTY_DRIVER_REAL_RAW);
136 if (IS_ERR(driver))
137 return PTR_ERR(driver);
141 driver->driver_name = "nfcon";
142 driver->name = "nfcon";
143 driver->type = TTY_DRIVER_TYPE_SYSTEM;
144 driver->subtype = SYSTEM_TYPE_TTY;
145 driver
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvif/
H A Ddriver.c24 #include <nvif/driver.h>
45 for (i = 0; (client->driver = nvif_driver[i]); i++) {
46 if (!drv || !strcmp(client->driver->name, drv)) {
47 ret = client->driver->init(name, device, cfg, dbg,
51 client->driver->fini(client->object.priv);
H A Dclient.c26 #include <nvif/driver.h>
35 return client->driver->ioctl(client->object.priv, data, size, NULL);
41 return client->driver->suspend(client->object.priv);
47 return client->driver->resume(client->object.priv);
54 if (client->driver) {
55 if (client->driver->fini)
56 client->driver->fini(client->object.priv);
57 client->driver = NULL;
83 client->driver = parent->driver;
[all...]
/linux-master/drivers/bus/fsl-mc/
H A DMakefile7 obj-$(CONFIG_FSL_MC_BUS) += mc-bus-driver.o
9 mc-bus-driver-objs := fsl-mc-bus.o \
15 dprc-driver.o \
/linux-master/arch/xtensa/platforms/iss/
H A Dconsole.c92 seq_printf(m, "serinfo:1.0 driver:0.1\n");
106 struct tty_driver *driver; local
109 driver = tty_alloc_driver(SERIAL_MAX_NUM_LINES, TTY_DRIVER_REAL_RAW);
110 if (IS_ERR(driver))
111 return PTR_ERR(driver);
117 driver->driver_name = "iss_serial";
118 driver->name = "ttyS";
119 driver->major = TTY_MAJOR;
120 driver->minor_start = 64;
121 driver
[all...]
/linux-master/lib/kunit/
H A Ddevice.c33 /* If the driver is managed by KUnit and unique to this device. */
34 const struct device_driver *driver; member in struct:kunit_device
84 struct device_driver *driver; local
87 driver = kunit_kzalloc(test, sizeof(*driver), GFP_KERNEL);
89 if (!driver)
92 driver->name = name;
93 driver->bus = &kunit_bus_type;
94 driver->owner = THIS_MODULE;
96 err = driver_register(driver);
192 const struct device_driver *driver = to_kunit_device(dev)->driver; local
[all...]
/linux-master/drivers/pci/endpoint/
H A Dpci-epf-core.c24 * pci_epf_unbind() - Notify the function driver that the binding between the
28 * Invoke to notify the function driver that the binding between the EPF device
35 if (!epf->driver) {
36 dev_WARN(&epf->dev, "epf device not bound to driver\n");
43 epf_vf->driver->ops->unbind(epf_vf);
46 epf->driver->ops->unbind(epf);
48 module_put(epf->driver->owner);
53 * pci_epf_bind() - Notify the function driver that the EPF device has been
57 * Invoke to notify the function driver that it has been bound to a EPC device
67 if (!epf->driver) {
315 pci_epf_remove_cfs(struct pci_epf_driver *driver) argument
335 pci_epf_unregister_driver(struct pci_epf_driver *driver) argument
342 pci_epf_add_cfs(struct pci_epf_driver *driver) argument
376 __pci_epf_register_driver(struct pci_epf_driver *driver, struct module *owner) argument
491 struct pci_epf_driver *driver = to_pci_epf_driver(drv); local
502 struct pci_epf_driver *driver = to_pci_epf_driver(dev->driver); local
515 struct pci_epf_driver *driver = to_pci_epf_driver(dev->driver); local
[all...]
/linux-master/tools/usb/usbip/libsrc/
H A Dusbip_host_driver.c21 const char *driver; local
23 driver = udev_device_get_driver(dev);
24 return driver != NULL && !strcmp(driver, USBIP_HOST_DRV_NAME);

Completed in 1129 milliseconds

1234567891011>>