/linux-4.1.27/arch/arm/plat-samsung/include/plat/ |
D | cpu.h | 134 extern struct bus_type s3c2410_subsys; 135 extern struct bus_type s3c2410a_subsys; 136 extern struct bus_type s3c2412_subsys; 137 extern struct bus_type s3c2416_subsys; 138 extern struct bus_type s3c2440_subsys; 139 extern struct bus_type s3c2442_subsys; 140 extern struct bus_type s3c2443_subsys; 141 extern struct bus_type s3c6410_subsys;
|
/linux-4.1.27/drivers/base/ |
D | bus.c | 39 static struct bus_type *bus_get(struct bus_type *bus) in bus_get() 48 static void bus_put(struct bus_type *bus) in bus_put() 128 int bus_create_file(struct bus_type *bus, struct bus_attribute *attr) in bus_create_file() 140 void bus_remove_file(struct bus_type *bus, struct bus_attribute *attr) in bus_remove_file() 153 struct bus_type *bus = priv->bus; in bus_release() 183 struct bus_type *bus = bus_get(drv->bus); in unbind_store() 210 struct bus_type *bus = bus_get(drv->bus); in bind_store() 238 static ssize_t show_drivers_autoprobe(struct bus_type *bus, char *buf) in show_drivers_autoprobe() 243 static ssize_t store_drivers_autoprobe(struct bus_type *bus, in store_drivers_autoprobe() 253 static ssize_t store_drivers_probe(struct bus_type *bus, in store_drivers_probe() [all …]
|
D | container.c | 30 struct bus_type container_subsys = {
|
D | base.h | 39 struct bus_type *bus;
|
D | driver.c | 211 struct device_driver *driver_find(const char *name, struct bus_type *bus) in driver_find()
|
D | soc.c | 31 static struct bus_type soc_bus_type = {
|
D | isa.c | 86 static struct bus_type isa_bus_type = {
|
D | cpu.c | 124 struct bus_type cpu_subsys = {
|
D | memory.c | 44 static struct bus_type memory_subsys = {
|
D | node.c | 22 static struct bus_type node_subsys = {
|
/linux-4.1.27/drivers/net/wireless/b43/ |
D | bus.h | 14 enum b43_bus_type bus_type; member 59 return (dev->bus_type == B43_BUS_SSB && in b43_bus_host_is_pcmcia() 69 if (dev->bus_type == B43_BUS_BCMA) in b43_bus_host_is_pci() 73 if (dev->bus_type == B43_BUS_SSB) in b43_bus_host_is_pci() 82 return (dev->bus_type == B43_BUS_SSB && in b43_bus_host_is_sdio()
|
D | bus.c | 94 dev->bus_type = B43_BUS_BCMA; in b43_bus_dev_bcma_init() 199 dev->bus_type = B43_BUS_SSB; in b43_bus_dev_ssb_init() 238 switch (dev->bus_type) { in b43_bus_get_wldev() 253 switch (dev->bus_type) { in b43_bus_set_wldev()
|
D | phy_common.c | 349 switch (dev->dev->bus_type) { in b43_phy_put_into_reset() 388 switch (dev->dev->bus_type) { in b43_phy_take_out_of_reset() 584 switch (dev->dev->bus_type) { in b43_phy_force_clock()
|
D | main.c | 1213 switch (dev->dev->bus_type) { in b43_wireless_core_phy_pll_reset() 1310 switch (dev->dev->bus_type) { in b43_wireless_core_reset() 2917 switch (dev->dev->bus_type) { in b43_gpio_init() 2944 switch (dev->dev->bus_type) { in b43_gpio_cleanup() 3027 switch (dev->dev->bus_type) { in b43_mac_phy_clock_set() 3339 switch (dev->dev->bus_type) { in b43_chip_init() 3940 switch (dev->dev->bus_type) { in b43_switch_band() 4751 if (dev->dev->bus_type != B43_BUS_SSB) in b43_imcfglo_timeouts_workaround() 4819 switch (dev->dev->bus_type) { in b43_wireless_core_exit() 4866 switch (dev->dev->bus_type) { in b43_wireless_core_init() [all …]
|
D | dma.c | 818 switch (dev->dev->bus_type) { in supported_dma_mask() 1105 if (dev->dev->bus_type == B43_BUS_SSB && in b43_dma_translation_in_low_word() 1127 switch (dev->dev->bus_type) { in b43_dma_init() 1144 if (dev->dev->bus_type == B43_BUS_BCMA) in b43_dma_init()
|
/linux-4.1.27/Documentation/driver-model/ |
D | bus.txt | 6 See the kerneldoc for the struct bus_type. 8 int bus_register(struct bus_type * bus); 18 struct bus_type pci_bus_type = { 25 extern struct bus_type pci_bus_type; 71 int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data, 74 int bus_for_each_drv(struct bus_type * bus, struct device_driver * start, 123 ssize_t (*show)(struct bus_type *, char * buf); 124 ssize_t (*store)(struct bus_type *, const char * buf, size_t count); 140 int bus_create_file(struct bus_type *, struct bus_attribute *); 141 void bus_remove_file(struct bus_type *, struct bus_attribute *);
|
D | porting.txt | 38 - Define a struct bus_type for the bus driver. 40 struct bus_type pci_bus_type = { 70 extern struct bus_type pci_bus_type; 148 belongs to. This should be set to the bus_type that was declared 338 Instead, a bus may supply a method in struct bus_type that does the 388 struct bus_type: 403 struct bus_type contains a list of all devices registered with the bus 410 int bus_for_each_dev(struct bus_type * bus, struct device * start, 416 struct bus_type also contains a list of all drivers registered with 422 int bus_for_each_drv(struct bus_type * bus, struct device_driver * start, [all …]
|
/linux-4.1.27/include/linux/ |
D | device.h | 39 struct bus_type; 47 ssize_t (*show)(struct bus_type *bus, char *buf); 48 ssize_t (*store)(struct bus_type *bus, const char *buf, size_t count); 58 extern int __must_check bus_create_file(struct bus_type *, 60 extern void bus_remove_file(struct bus_type *, struct bus_attribute *); 105 struct bus_type { struct 134 extern int __must_check bus_register(struct bus_type *bus); argument 136 extern void bus_unregister(struct bus_type *bus); 138 extern int __must_check bus_rescan_devices(struct bus_type *bus); 146 struct bus_type *subsys, [all …]
|
D | iommu.h | 36 struct bus_type; 186 extern int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops); 187 extern bool iommu_present(struct bus_type *bus); 188 extern bool iommu_capable(struct bus_type *bus, enum iommu_cap cap); 189 extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus); 300 static inline bool iommu_present(struct bus_type *bus) in iommu_present() 305 static inline bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) in iommu_capable() 310 static inline struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) in iommu_domain_alloc()
|
D | pm_clock.h | 70 extern void pm_clk_add_notifier(struct bus_type *bus, 73 static inline void pm_clk_add_notifier(struct bus_type *bus, in pm_clk_add_notifier()
|
D | dma-debug.h | 27 struct bus_type; 31 extern void dma_debug_add_bus(struct bus_type *bus); 92 static inline void dma_debug_add_bus(struct bus_type *bus) in dma_debug_add_bus()
|
D | edac.h | 31 extern struct bus_type edac_subsys; 35 extern struct bus_type *edac_get_sysfs_subsys(void); 660 struct bus_type *bus;
|
D | container.h | 15 extern struct bus_type container_subsys;
|
D | eisa.h | 67 extern struct bus_type eisa_bus_type;
|
D | tc.h | 122 extern struct bus_type tc_bus_type;
|
D | superhyway.h | 48 extern struct bus_type superhyway_bus_type;
|
D | maple.h | 7 extern struct bus_type maple_bus_type;
|
D | zorro.h | 47 extern struct bus_type zorro_bus_type;
|
D | vlynq.h | 100 extern struct bus_type vlynq_bus_type;
|
D | coresight.h | 40 extern struct bus_type coresight_bustype;
|
D | vme.h | 82 extern struct bus_type vme_bus_type;
|
D | dio.h | 70 extern struct bus_type dio_bus_type;
|
D | cpu.h | 222 extern struct bus_type cpu_subsys;
|
D | platform_device.h | 47 extern struct bus_type platform_bus_type;
|
D | rio.h | 85 extern struct bus_type rio_bus_type;
|
D | i2c.h | 37 extern struct bus_type i2c_bus_type;
|
D | firewire.h | 77 extern struct bus_type fw_bus_type;
|
D | phy.h | 788 extern struct bus_type mdio_bus_type;
|
D | pnp.h | 446 extern struct bus_type pnp_bus_type;
|
/linux-4.1.27/tools/usb/usbip/src/ |
D | usbip_unbind.c | 44 char bus_type[] = "usb"; in unbind_device() local 75 SYSFS_MNT_PATH, SYSFS_BUS_NAME, bus_type, SYSFS_DRIVERS_NAME, in unbind_device() 93 SYSFS_MNT_PATH, SYSFS_BUS_NAME, bus_type, SYSFS_DRIVERS_NAME, in unbind_device()
|
/linux-4.1.27/drivers/gpu/host1x/ |
D | bus.h | 21 struct bus_type; 24 extern struct bus_type host1x_bus_type;
|
D | bus.c | 307 struct bus_type host1x_bus_type = {
|
/linux-4.1.27/drivers/media/v4l2-core/ |
D | v4l2-of.c | 75 endpoint->bus_type = V4L2_MBUS_CSI2; in v4l2_of_parse_csi_bus() 103 endpoint->bus_type = V4L2_MBUS_PARALLEL; in v4l2_of_parse_parallel_bus() 105 endpoint->bus_type = V4L2_MBUS_BT656; in v4l2_of_parse_parallel_bus() 152 endpoint->bus_type = 0; in v4l2_of_parse_endpoint()
|
/linux-4.1.27/arch/powerpc/platforms/ps3/ |
D | repository.c | 184 enum ps3_bus_type *bus_type) in ps3_repository_read_bus_type() argument 194 *bus_type = v1; in ps3_repository_read_bus_type() 331 __func__, __LINE__, tmp.bus_type, tmp.bus_index, tmp.bus_id, in ps3_repository_find_device() 392 result = ps3_repository_read_bus_type(tmp.bus_index, &tmp.bus_type); in ps3_repository_find_device_by_id() 434 __func__, __LINE__, tmp.bus_type, tmp.dev_type, tmp.bus_index, in ps3_repository_find_device_by_id() 440 int ps3_repository_find_devices(enum ps3_bus_type bus_type, in ps3_repository_find_devices() argument 446 pr_devel(" -> %s:%d: find bus_type %u\n", __func__, __LINE__, bus_type); in ps3_repository_find_devices() 448 repo.bus_type = bus_type; in ps3_repository_find_devices() 449 result = ps3_repository_find_bus(repo.bus_type, 0, &repo.bus_index); in ps3_repository_find_devices() 482 int ps3_repository_find_bus(enum ps3_bus_type bus_type, unsigned int from, in ps3_repository_find_bus() argument [all …]
|
D | platform.h | 97 enum ps3_bus_type *bus_type); 140 enum ps3_bus_type bus_type; member 149 int ps3_repository_find_devices(enum ps3_bus_type bus_type, 151 int ps3_repository_find_bus(enum ps3_bus_type bus_type, unsigned int from,
|
D | device-init.c | 136 BUG_ON(repo->bus_type != PS3_BUS_TYPE_SB); in ps3_setup_gelic_device() 207 BUG_ON(repo->bus_type != PS3_BUS_TYPE_SB); in ps3_setup_uhc_device() 912 static int __init ps3_start_probe_thread(enum ps3_bus_type bus_type) in ps3_start_probe_thread() argument 922 repo.bus_type = bus_type; in ps3_start_probe_thread() 924 result = ps3_repository_find_bus(repo.bus_type, 0, &repo.bus_index); in ps3_start_probe_thread() 940 "ps3-probe-%u", bus_type); in ps3_start_probe_thread()
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | s3c2410.c | 83 struct bus_type s3c2410_subsys = { 91 struct bus_type s3c2410a_subsys = {
|
D | s3c244x.c | 80 struct bus_type s3c2440_subsys = { 85 struct bus_type s3c2442_subsys = {
|
D | s3c2443.c | 55 struct bus_type s3c2443_subsys = {
|
D | s3c2416.c | 75 struct bus_type s3c2416_subsys = {
|
D | s3c2412.c | 155 struct bus_type s3c2412_subsys = {
|
/linux-4.1.27/drivers/edac/ |
D | edac_stub.c | 77 struct bus_type edac_subsys = { 84 struct bus_type *edac_get_sysfs_subsys(void) in edac_get_sysfs_subsys()
|
D | edac_core.h | 241 struct bus_type *edac_subsys; 339 struct bus_type *edac_subsys; /* pointer to subsystem */
|
D | edac_pci_sysfs.c | 342 struct bus_type *edac_subsys; in edac_pci_main_kobj_setup()
|
/linux-4.1.27/drivers/ide/ |
D | cmd640.c | 722 const char *bus_type, *port2; in cmd640x_init() local 727 bus_type = "VLB"; in cmd640x_init() 733 bus_type = "PCI (type1)"; in cmd640x_init() 735 bus_type = "PCI (type2)"; in cmd640x_init() 783 "\n", 'a' + cmd640_chip_version - 1, bus_type, cfr); in cmd640x_init()
|
D | ide.c | 153 struct bus_type ide_bus_type = {
|
/linux-4.1.27/Documentation/zh_CN/filesystems/ |
D | sysfs.txt | 331 ssize_t (*show)(struct bus_type *, char * buf); 332 ssize_t (*store)(struct bus_type *, const char * buf, size_t count); 341 int bus_create_file(struct bus_type *, struct bus_attribute *); 342 void bus_remove_file(struct bus_type *, struct bus_attribute *);
|
/linux-4.1.27/drivers/s390/crypto/ |
D | ap_bus.c | 122 static struct bus_type ap_bus_type; 904 static struct bus_type ap_bus_type = { 1059 static ssize_t ap_domain_show(struct bus_type *bus, char *buf) in ap_domain_show() 1066 static ssize_t ap_control_domain_mask_show(struct bus_type *bus, char *buf) in ap_control_domain_mask_show() 1088 static ssize_t ap_config_time_show(struct bus_type *bus, char *buf) in ap_config_time_show() 1093 static ssize_t ap_interrupts_show(struct bus_type *bus, char *buf) in ap_interrupts_show() 1101 static ssize_t ap_config_time_store(struct bus_type *bus, in ap_config_time_store() 1119 static ssize_t ap_poll_thread_show(struct bus_type *bus, char *buf) in ap_poll_thread_show() 1124 static ssize_t ap_poll_thread_store(struct bus_type *bus, in ap_poll_thread_store() 1143 static ssize_t poll_timeout_show(struct bus_type *bus, char *buf) in poll_timeout_show() [all …]
|
/linux-4.1.27/include/media/ |
D | s5c73m3.h | 49 enum v4l2_mbus_type bus_type; member
|
D | s5k6aa.h | 45 enum v4l2_mbus_type bus_type; member
|
D | v4l2-of.h | 64 enum v4l2_mbus_type bus_type; member
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | ibmebus.h | 49 extern struct bus_type ibmebus_bus_type;
|
D | vio.h | 46 extern struct bus_type vio_bus_type;
|
D | macio.h | 7 extern struct bus_type macio_bus_type;
|
D | mpic.h | 338 extern struct bus_type mpic_subsys;
|
D | ps3.h | 440 extern struct bus_type ps3_system_bus_type;
|
/linux-4.1.27/arch/arm/mach-s3c64xx/ |
D | s3c6400.c | 72 static struct bus_type s3c6400_subsys = {
|
D | s3c6410.c | 75 struct bus_type s3c6410_subsys = {
|
D | common.c | 160 static struct bus_type s3c64xx_subsys = {
|
/linux-4.1.27/arch/arm/include/asm/ |
D | dma-iommu.h | 28 arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, u64 size);
|
D | ecard.h | 197 extern struct bus_type ecard_bus_type;
|
/linux-4.1.27/sound/hda/ |
D | hda_bus_type.c | 25 struct bus_type snd_hda_bus_type = {
|
/linux-4.1.27/drivers/pci/pcie/ |
D | portdrv_bus.c | 20 struct bus_type pcie_port_bus_type = {
|
D | portdrv.h | 23 extern struct bus_type pcie_port_bus_type;
|
/linux-4.1.27/drivers/staging/i2o/ |
D | core.h | 24 extern struct bus_type i2o_bus_type;
|
D | driver.c | 62 struct bus_type i2o_bus_type = {
|
/linux-4.1.27/drivers/net/ethernet/seeq/ |
D | ether3.c | 757 int bus_type, ret; in ether3_probe() local 792 bus_type = BUS_UNKNOWN; in ether3_probe() 800 bus_type = BUS_8; in ether3_probe() 802 if (bus_type == BUS_UNKNOWN && in ether3_probe() 805 bus_type = BUS_16; in ether3_probe() 807 switch (bus_type) { in ether3_probe()
|
/linux-4.1.27/arch/powerpc/oprofile/ |
D | op_model_cell.c | 290 u32 bus_word, bus_type, count_cycles, polarity, input_control; in set_pm_event() local 307 bus_type = GET_BUS_TYPE(unit_mask); in set_pm_event() 342 if ((bus_type == 0) && p->signal_group >= 60) in set_pm_event() 343 bus_type = 2; in set_pm_event() 344 if ((bus_type == 1) && p->signal_group >= 50) in set_pm_event() 345 bus_type = 0; in set_pm_event() 356 (bus_type << (30 - (2 * i))); in set_pm_event()
|
/linux-4.1.27/drivers/input/misc/ |
D | ad714x.h | 51 struct ad714x_chip *ad714x_probe(struct device *dev, u16 bus_type, int irq,
|
D | ad714x.c | 964 struct ad714x_chip *ad714x_probe(struct device *dev, u16 bus_type, int irq, in ad714x_probe() argument 1055 input[alloc_idx]->id.bustype = bus_type; in ad714x_probe() 1087 input[alloc_idx]->id.bustype = bus_type; in ad714x_probe() 1122 input[alloc_idx]->id.bustype = bus_type; in ad714x_probe() 1152 input[alloc_idx]->id.bustype = bus_type; in ad714x_probe()
|
/linux-4.1.27/arch/mips/include/asm/ |
D | cdmm.h | 66 extern struct bus_type mips_cdmm_bustype;
|
/linux-4.1.27/arch/mips/include/asm/mach-ath25/ |
D | dma-coherence.h | 25 extern struct bus_type pci_bus_type; in ath25_dev_offset()
|
/linux-4.1.27/sound/ |
D | ac97_bus.c | 52 struct bus_type ac97_bus_type = {
|
/linux-4.1.27/arch/arm/mach-ks8695/include/mach/ |
D | memory.h | 27 extern struct bus_type platform_bus_type;
|
/linux-4.1.27/drivers/media/platform/marvell-ccic/ |
D | mmp-driver.c | 363 mcam->bus_type = pdata->bus_type; in mmpcam_probe() 365 if (mcam->bus_type == V4L2_MBUS_CSI2) { in mmpcam_probe()
|
D | mcam-core.h | 119 enum v4l2_mbus_type bus_type; member
|
/linux-4.1.27/include/scsi/ |
D | libfcoe.h | 401 ssize_t fcoe_ctlr_create_store(struct bus_type *bus, 403 ssize_t fcoe_ctlr_destroy_store(struct bus_type *bus,
|
/linux-4.1.27/include/net/iucv/ |
D | iucv.h | 82 extern struct bus_type iucv_bus; 491 struct bus_type *bus;
|
/linux-4.1.27/drivers/tc/ |
D | tc-driver.c | 99 struct bus_type tc_bus_type = {
|
/linux-4.1.27/arch/parisc/include/asm/ |
D | parisc-device.h | 63 extern struct bus_type parisc_bus_type;
|
/linux-4.1.27/drivers/xen/xenbus/ |
D | xenbus_probe.h | 47 struct bus_type bus;
|
D | xenbus_probe.c | 338 struct bus_type *bus) in xenbus_device_find() 367 static void xenbus_cleanup_devices(const char *path, struct bus_type *bus) in xenbus_cleanup_devices()
|
/linux-4.1.27/drivers/message/fusion/ |
D | mptscsih.c | 398 if (ioc->bus_type != SAS) in mptscsih_issue_sep_command() 632 if (ioc->bus_type == SAS) { in mptscsih_io_done() 720 if (ioc->bus_type != FC) in mptscsih_io_done() 741 if ( ioc->bus_type == SAS ) { in mptscsih_io_done() 773 } else if (ioc->bus_type == FC) { in mptscsih_io_done() 798 if (ioc->bus_type == FC) in mptscsih_io_done() 830 if (ioc->bus_type == SPI) { in mptscsih_io_done() 901 if ((ioc->bus_type == SPI) && in mptscsih_io_done() 1651 retval = (ioc->bus_type == SAS) ? in mptscsih_IssueTaskMgmt() 1666 switch (ioc->bus_type) { in mptscsih_get_tm_timeout() [all …]
|
D | mptbase.c | 419 } else if (ioc->bus_type == SAS && ioc->sas_discovery_quiesce_io) { in mpt_fault_reset_work() 546 if (ioc->bus_type == FC) in mpt_reply() 548 else if (ioc->bus_type == SPI) in mpt_reply() 550 else if (ioc->bus_type == SAS) in mpt_reply() 1898 ioc->bus_type = FC; in mpt_attach() 1916 ioc->bus_type = FC; in mpt_attach() 1926 ioc->bus_type = FC; in mpt_attach() 1940 ioc->bus_type = SPI; in mpt_attach() 1946 ioc->bus_type = SAS; in mpt_attach() 1952 ioc->bus_type = SAS; in mpt_attach() [all …]
|
D | mptctl.c | 269 if (ioc->bus_type == SAS) in mptctl_reply() 308 if (ioc->bus_type == SAS) in mptctl_taskmgmt_reply() 354 (ioc->bus_type == FC)) in mptctl_do_taskmgmt() 368 switch (ioc->bus_type) { in mptctl_do_taskmgmt() 488 if (ioc->bus_type == SAS) { in mptctl_timeout_expired() 1294 if (ioc->bus_type == SAS) in mptctl_getiocinfo() 1296 else if (ioc->bus_type == FC) in mptctl_getiocinfo() 2543 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC)) in mptctl_hp_hostinfo() 2693 if ((ioc->bus_type == SAS) || (ioc->bus_type == FC)) in mptctl_hp_targetinfo()
|
/linux-4.1.27/drivers/mcb/ |
D | mcb-internal.h | 42 u8 bus_type; member
|
D | mcb-parse.c | 120 pr_debug("header->bus_type = 0x%x\n", header->bus_type); in chameleon_parse_cells()
|
D | mcb-core.c | 93 static struct bus_type mcb_bus_type = {
|
/linux-4.1.27/drivers/media/common/b2c2/ |
D | flexcop-misc.c | 71 flexcop_bus_names[fc->bus_type], in flexcop_device_name()
|
D | flexcop-common.h | 73 flexcop_bus_t bus_type; member
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | ibmebus.c | 55 struct bus_type ibmebus_bus_type; 261 static ssize_t ibmebus_store_probe(struct bus_type *bus, in ibmebus_store_probe() 297 static ssize_t ibmebus_store_remove(struct bus_type *bus, in ibmebus_store_remove() 715 struct bus_type ibmebus_bus_type = {
|
D | vio.c | 1012 static ssize_t cmo_##name##_show(struct bus_type *bt, char *buf) \ 1020 cmo_##name##_##var##_show(struct bus_type *bt, char *buf) \ 1035 static ssize_t cmo_high_show(struct bus_type *bt, char *buf) in cmo_high_show() 1040 static ssize_t cmo_high_store(struct bus_type *bt, const char *buf, in cmo_high_store() 1604 struct bus_type vio_bus_type = {
|
/linux-4.1.27/drivers/media/i2c/ |
D | smiapp-pll.h | 39 uint8_t bus_type; member
|
D | s5k6aa.c | 234 enum v4l2_mbus_type bus_type; member 678 enum v4l2_mbus_type bus_type, int nlanes) in s5k6aa_configure_video_bus() argument 689 if (bus_type == V4L2_MBUS_CSI2) in s5k6aa_configure_video_bus() 691 else if (bus_type != V4L2_MBUS_PARALLEL) in s5k6aa_configure_video_bus() 799 ret = s5k6aa_configure_video_bus(s5k6aa, s5k6aa->bus_type, in s5k6aa_initialize_isp() 1566 s5k6aa->bus_type = pdata->bus_type; in s5k6aa_probe()
|
D | s5k5baf.c | 292 enum v4l2_mbus_type bus_type; member 769 if (state->bus_type == V4L2_MBUS_CSI2) in s5k5baf_hw_set_video_bus() 1873 state->bus_type = ep.bus_type; in s5k5baf_parse_device_node() 1875 switch (state->bus_type) { in s5k5baf_parse_device_node()
|
D | smiapp-pll.c | 426 switch (pll->bus_type) { in smiapp_pll_calculate()
|
/linux-4.1.27/drivers/scsi/ |
D | advansys.c | 562 ushort bus_type; member 2067 #define AdvGetChipVersion(iop_base, bus_type) \ argument 2410 printk(" bus_type %d, init_sdtr 0x%x,\n", h->bus_type, in asc_prt_asc_dvc_var() 2798 if (asc_dvc_varp->bus_type & ASC_IS_ISA) { in advansys_info() 2799 if ((asc_dvc_varp->bus_type & ASC_IS_ISAPNP) == in advansys_info() 2812 if (asc_dvc_varp->bus_type & ASC_IS_VL) { in advansys_info() 2814 } else if (asc_dvc_varp->bus_type & ASC_IS_EISA) { in advansys_info() 2816 } else if (asc_dvc_varp->bus_type & ASC_IS_PCI) { in advansys_info() 2817 if ((asc_dvc_varp->bus_type & ASC_IS_PCI_ULTRA) in advansys_info() 2826 "type %d\n", asc_dvc_varp->bus_type); in advansys_info() [all …]
|
D | eata.c | 1079 char *bus_type, dma_name[16]; in port_detect() local 1144 bus_type = "PCI"; in port_detect() 1149 bus_type = "PCI"; in port_detect() 1154 bus_type = "EISA"; in port_detect() 1157 bus_type = "ISA"; in port_detect() 1160 bus_type = "PCI"; in port_detect() 1164 bus_type = "ISA"; in port_detect() 1171 name, port_base, bus_type, info.haaval, info.ata); in port_detect() 1178 bus_type); in port_detect() 1185 name, bus_type); in port_detect() [all …]
|
D | BusLogic.h | 452 unsigned char bus_type; /* Byte 19 */ member 507 unsigned char bus_type; /* Byte 0 */ member 978 unsigned char bus_type; /* Byte 23 */ member
|
D | scsi_priv.h | 142 extern struct bus_type scsi_bus_type;
|
D | u14-34f.c | 801 char *bus_type, dma_name[16]; in port_detect() local 938 bus_type = "VESA"; in port_detect() 953 bus_type = "ISA"; in port_detect() 1005 BN(j), bus_type, (unsigned long)sh[j]->io_port, (int)sh[j]->base, in port_detect()
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
D | targetos.h | 125 u32 bus_type; /* bus type (0 == PCI, 1 == EISA) */ member
|
/linux-4.1.27/drivers/dio/ |
D | dio-driver.c | 126 struct bus_type dio_bus_type = {
|
/linux-4.1.27/drivers/tty/ |
D | synclink.c | 256 unsigned int bus_type; /* expansion bus type (ISA,EISA,PCI) */ member 3462 if (info->bus_type == MGSL_BUS_TYPE_PCI) { in line_info() 3599 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) { in mgsl_allocate_dma_buffers() 3695 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) { in mgsl_alloc_buffer_list_memory() 3777 if (info->buffer_list && info->bus_type != MGSL_BUS_TYPE_PCI) in mgsl_free_buffer_list_memory() 3810 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) { in mgsl_alloc_frame_memory() 3850 if ( info->bus_type != MGSL_BUS_TYPE_PCI ) in mgsl_free_frame_memory() 4083 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) { in mgsl_claim_resources() 4244 if ( info->bus_type == MGSL_BUS_TYPE_PCI ) { in mgsl_add_device() 4396 info->bus_type = MGSL_BUS_TYPE_ISA; in mgsl_enum_isa_devices() [all …]
|
/linux-4.1.27/drivers/staging/fsl-mc/include/ |
D | mc.h | 199 extern struct bus_type fsl_mc_bus_type;
|
/linux-4.1.27/arch/arm/mach-integrator/ |
D | lm.c | 43 static struct bus_type lm_bustype = {
|
/linux-4.1.27/include/linux/uwb/ |
D | umc.h | 98 extern struct bus_type umc_bus_type;
|
/linux-4.1.27/drivers/pci/pcie/aer/ |
D | aerdrv.h | 107 extern struct bus_type pcie_port_bus_type;
|
/linux-4.1.27/arch/sparc/include/asm/ |
D | dma-mapping.h | 27 extern struct bus_type pci_bus_type;
|
/linux-4.1.27/drivers/iommu/ |
D | iommu.c | 802 static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops) in iommu_bus_init() 845 int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops) in bus_set_iommu() 863 bool iommu_present(struct bus_type *bus) in iommu_present() 869 bool iommu_capable(struct bus_type *bus, enum iommu_cap cap) in iommu_capable() 901 struct iommu_domain *iommu_domain_alloc(struct bus_type *bus) in iommu_domain_alloc()
|
/linux-4.1.27/drivers/zorro/ |
D | zorro-driver.c | 163 struct bus_type zorro_bus_type = {
|
/linux-4.1.27/arch/mips/txx9/generic/ |
D | 7segled.c | 81 static struct bus_type tx_7segled_subsys = {
|
/linux-4.1.27/arch/mips/sgi-ip22/ |
D | ip22-gio.c | 14 static struct bus_type gio_bus_type; 375 static struct bus_type gio_bus_type = {
|
/linux-4.1.27/arch/m68k/coldfire/ |
D | gpio.c | 161 static struct bus_type mcfgpio_subsys = {
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
D | suspend.c | 220 static struct bus_type suspend_subsys = {
|
D | cmm.c | 389 static struct bus_type cmm_subsys = {
|
/linux-4.1.27/drivers/pcmcia/ |
D | cs_internal.h | 138 extern struct bus_type pcmcia_bus_type;
|
/linux-4.1.27/drivers/net/ethernet/i825xx/ |
D | ether1.h | 46 unsigned char bus_type; member
|
/linux-4.1.27/arch/arm/include/asm/hardware/ |
D | locomo.h | 161 extern struct bus_type locomo_bus_type;
|
D | sa1111.h | 399 extern struct bus_type sa1111_bus_type;
|
/linux-4.1.27/Documentation/filesystems/ |
D | sysfs.txt | 337 ssize_t (*show)(struct bus_type *, char * buf); 338 ssize_t (*store)(struct bus_type *, const char * buf, size_t count); 347 int bus_create_file(struct bus_type *, struct bus_attribute *); 348 void bus_remove_file(struct bus_type *, struct bus_attribute *);
|
/linux-4.1.27/drivers/rapidio/ |
D | rio-driver.c | 225 struct bus_type rio_bus_type = {
|
D | rio-sysfs.c | 305 static ssize_t bus_scan_store(struct bus_type *bus, const char *buf, in bus_scan_store()
|
/linux-4.1.27/include/linux/amba/ |
D | bus.h | 60 extern struct bus_type amba_bustype;
|
/linux-4.1.27/drivers/uwb/ |
D | umc-bus.c | 189 struct bus_type umc_bus_type = {
|
D | uwb-internal.h | 317 extern struct bus_type uwb_bus_type;
|
D | lc-dev.c | 252 struct bus_type uwb_bus_type = {
|
/linux-4.1.27/drivers/xen/ |
D | xen-balloon.c | 228 static struct bus_type balloon_subsys = {
|
D | pcpu.c | 64 static struct bus_type xen_pcpu_subsys = {
|
/linux-4.1.27/drivers/usb/serial/ |
D | bus.c | 166 struct bus_type usb_serial_bus_type = {
|
/linux-4.1.27/drivers/sh/intc/ |
D | internals.h | 170 extern struct bus_type intc_subsys;
|
D | core.c | 468 struct bus_type intc_subsys = {
|
/linux-4.1.27/arch/sh/drivers/dma/ |
D | dma-sysfs.c | 21 static struct bus_type dma_subsys = {
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
D | bttv-gpio.c | 71 struct bus_type bttv_sub_bus_type = {
|
D | bttvp.h | 289 extern struct bus_type bttv_sub_bus_type;
|
/linux-4.1.27/drivers/usb/core/ |
D | usb.h | 112 extern struct bus_type usb_bus_type;
|
/linux-4.1.27/drivers/sh/superhyway/ |
D | superhyway.c | 208 struct bus_type superhyway_bus_type = {
|
/linux-4.1.27/drivers/mfd/ |
D | mcp-core.c | 48 static struct bus_type mcp_bus_type = {
|
/linux-4.1.27/include/sound/ |
D | hdaudio.h | 22 extern struct bus_type snd_hda_bus_type;
|
D | ac97_codec.h | 656 extern struct bus_type ac97_bus_type;
|
/linux-4.1.27/drivers/misc/mic/bus/ |
D | mic_bus.c | 120 static struct bus_type mic_bus = {
|
/linux-4.1.27/sound/core/seq/ |
D | seq_device.c | 67 static struct bus_type snd_seq_bus_type = {
|
/linux-4.1.27/sound/aoa/soundbus/ |
D | core.c | 153 static struct bus_type soundbus_bus_type = {
|
/linux-4.1.27/drivers/s390/cio/ |
D | ccwgroup.c | 33 static struct bus_type ccwgroup_bus_type; 547 static struct bus_type ccwgroup_bus_type = {
|
D | scm.c | 43 static struct bus_type scm_bus_type = {
|
D | css.c | 38 static struct bus_type css_bus_type; 1258 static struct bus_type css_bus_type = {
|
/linux-4.1.27/drivers/platform/x86/ |
D | ibm_rtl.c | 196 static struct bus_type rtl_subsys = {
|
/linux-4.1.27/drivers/media/ |
D | media-devnode.c | 79 static struct bus_type media_bus_type = {
|
/linux-4.1.27/include/uapi/linux/ |
D | i2o-dev.h | 181 __u32 bus_type:8; member
|
/linux-4.1.27/drivers/input/gameport/ |
D | gameport.c | 46 static struct bus_type gameport_bus; 793 static struct bus_type gameport_bus = {
|
/linux-4.1.27/drivers/mmc/core/ |
D | sdio_bus.c | 212 static struct bus_type sdio_bus_type = {
|
D | bus.c | 200 static struct bus_type mmc_bus_type = {
|
/linux-4.1.27/drivers/media/i2c/s5c73m3/ |
D | s5c73m3.h | 401 enum v4l2_mbus_type bus_type; member
|
/linux-4.1.27/drivers/fmc/ |
D | fmc-core.c | 61 static struct bus_type fmc_bus_type = {
|
/linux-4.1.27/drivers/pnp/ |
D | driver.c | 252 struct bus_type pnp_bus_type = {
|
/linux-4.1.27/drivers/net/wireless/ |
D | atmel.c | 452 enum { BUS_TYPE_PCCARD, BUS_TYPE_PCI } bus_type; member 1388 if (priv->bus_type == BUS_TYPE_PCCARD) in atmel_close() 1545 priv->bus_type = card_present ? BUS_TYPE_PCCARD : BUS_TYPE_PCI; in init_atmel_card() 1550 if (priv->bus_type == BUS_TYPE_PCCARD) { in init_atmel_card() 1611 priv->bus_type == BUS_TYPE_PCCARD ? "atmel_cs" : "atmel_pci")) { in init_atmel_card() 1649 if (priv->bus_type == BUS_TYPE_PCCARD) in stop_atmel_card() 3622 priv->bus_type == BUS_TYPE_PCCARD) in atmel_wakeup_firmware() 3650 priv->bus_type == BUS_TYPE_PCCARD) in atmel_wakeup_firmware() 3700 if (priv->bus_type == BUS_TYPE_PCCARD) in probe_atmel_card() 3725 if (priv->bus_type == BUS_TYPE_PCCARD) in probe_atmel_card() [all …]
|
/linux-4.1.27/include/linux/usb/ |
D | serial.h | 360 extern struct bus_type usb_serial_bus_type;
|
/linux-4.1.27/drivers/base/power/ |
D | clock_ops.c | 460 void pm_clk_add_notifier(struct bus_type *bus, in pm_clk_add_notifier()
|
/linux-4.1.27/arch/powerpc/platforms/pasemi/ |
D | setup.c | 382 extern struct bus_type pcmcia_bus_type; in pasemi_pcmcia_init()
|
/linux-4.1.27/include/linux/iio/ |
D | iio.h | 525 extern struct bus_type iio_bus_type;
|
/linux-4.1.27/drivers/video/fbdev/aty/ |
D | atyfb.h | 143 u8 bus_type; member
|
/linux-4.1.27/drivers/block/ |
D | rbd.c | 422 static ssize_t rbd_add(struct bus_type *bus, const char *buf, 424 static ssize_t rbd_remove(struct bus_type *bus, const char *buf, 426 static ssize_t rbd_add_single_major(struct bus_type *bus, const char *buf, 428 static ssize_t rbd_remove_single_major(struct bus_type *bus, const char *buf, 473 static struct bus_type rbd_bus_type = { 5401 static ssize_t do_rbd_add(struct bus_type *bus, in do_rbd_add() 5492 static ssize_t rbd_add(struct bus_type *bus, in rbd_add() 5502 static ssize_t rbd_add_single_major(struct bus_type *bus, in rbd_add_single_major() 5548 static ssize_t do_rbd_remove(struct bus_type *bus, in do_rbd_remove() 5611 static ssize_t rbd_remove(struct bus_type *bus, in rbd_remove() [all …]
|
/linux-4.1.27/kernel/locking/ |
D | rtmutex-tester.c | 373 static struct bus_type rttest_subsys = {
|
/linux-4.1.27/drivers/misc/ |
D | tifm_core.c | 156 static struct bus_type tifm_bus_type = {
|
/linux-4.1.27/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 732 ssize_t fcoe_ctlr_create_store(struct bus_type *bus, in fcoe_ctlr_create_store() 795 ssize_t fcoe_ctlr_destroy_store(struct bus_type *bus, in fcoe_ctlr_destroy_store()
|
D | fcoe_sysfs.c | 510 static struct bus_type fcoe_bus_type; 566 static struct bus_type fcoe_bus_type = {
|
/linux-4.1.27/arch/powerpc/sysdev/qe_lib/ |
D | qe_ic.c | 471 static struct bus_type qe_ic_subsys = {
|
/linux-4.1.27/drivers/virtio/ |
D | virtio.c | 272 static struct bus_type virtio_bus = {
|
/linux-4.1.27/drivers/vfio/ |
D | vfio_iommu_type1.c | 631 struct bus_type **bus = data; in vfio_bus_type() 730 struct bus_type *bus = NULL; in vfio_iommu_type1_attach_group()
|
/linux-4.1.27/drivers/input/serio/ |
D | serio.c | 52 static struct bus_type serio_bus; 1020 static struct bus_type serio_bus = {
|
/linux-4.1.27/include/linux/spi/ |
D | spi.h | 31 extern struct bus_type spi_bus_type;
|
/linux-4.1.27/drivers/media/pci/b2c2/ |
D | flexcop-pci.c | 368 fc->bus_type = FC_PCI; in flexcop_pci_probe()
|
/linux-4.1.27/drivers/net/phy/ |
D | mdio_bus.c | 586 struct bus_type mdio_bus_type = {
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
D | tiocx.c | 144 struct bus_type tiocx_bus_type = {
|
/linux-4.1.27/drivers/spmi/ |
D | spmi.c | 351 static struct bus_type spmi_bus_type = {
|
/linux-4.1.27/drivers/bus/ |
D | mips_cdmm.c | 119 struct bus_type mips_cdmm_bustype = {
|
/linux-4.1.27/drivers/eisa/ |
D | eisa-bus.c | 139 struct bus_type eisa_bus_type = {
|
/linux-4.1.27/arch/sparc/kernel/ |
D | vio.c | 114 static struct bus_type vio_bus_type = {
|
/linux-4.1.27/drivers/ipack/ |
D | ipack.c | 199 static struct bus_type ipack_bus_type = {
|
/linux-4.1.27/drivers/misc/mei/ |
D | bus.c | 125 static struct bus_type mei_cl_bus_type = {
|
/linux-4.1.27/include/acpi/ |
D | acpi_bus.h | 425 extern struct bus_type acpi_bus_type;
|
/linux-4.1.27/drivers/hwtracing/coresight/ |
D | coresight.c | 613 struct bus_type coresight_bustype = {
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_mipi_dsi.c | 64 static struct bus_type mipi_dsi_bus_type = {
|
/linux-4.1.27/kernel/time/ |
D | clockevents.c | 677 struct bus_type clockevents_subsys = {
|
/linux-4.1.27/drivers/memstick/core/ |
D | memstick.c | 171 static struct bus_type memstick_bus_type = {
|
/linux-4.1.27/drivers/amba/ |
D | bus.c | 192 struct bus_type amba_bustype = {
|
/linux-4.1.27/drivers/media/usb/b2c2/ |
D | flexcop-usb.c | 528 fc->bus_type = FC_USB; in flexcop_usb_probe()
|
/linux-4.1.27/sound/pci/asihpi/ |
D | hpioctl.c | 391 hm.u.s.resource.bus_type = HPI_BUS_PCI; in asihpi_adapter_probe()
|
/linux-4.1.27/arch/s390/kernel/ |
D | time.c | 1135 static struct bus_type etr_subsys = { 1621 static struct bus_type stp_subsys = {
|
/linux-4.1.27/drivers/staging/fsl-mc/bus/ |
D | mc-bus.c | 103 struct bus_type fsl_mc_bus_type = {
|