| /linux-4.1.27/include/linux/ |
| D | async.h | 22 unsigned registered:1; member 30 .registered = 1 } 38 .registered = 0 }
|
| D | kmsg_dump.h | 46 bool registered; member
|
| D | elevator.h | 113 unsigned int registered:1; member
|
| D | cpuidle.h | 75 unsigned int registered:1; member
|
| D | host1x.h | 289 bool registered; member
|
| /linux-4.1.27/drivers/net/wireless/p54/ |
| D | led.c | 78 if ((brightness) && (led->registered)) { in p54_led_brightness_set() 91 if (led->registered) in p54_register_led() 107 led->registered = 1; in p54_register_led() 153 if (priv->leds[i].registered) { in p54_unregister_leds() 154 priv->leds[i].registered = false; in p54_unregister_leds()
|
| D | p54.h | 156 unsigned int registered; member 176 bool registered; member
|
| D | main.c | 814 priv->registered = true; in p54_register_common() 861 if (priv->registered) { in p54_unregister_common() 862 priv->registered = false; in p54_unregister_common()
|
| /linux-4.1.27/drivers/net/wireless/ath/carl9170/ |
| D | led.c | 78 if (ar->leds[i].registered) { in carl9170_led_update() 112 if (!arl->registered) in carl9170_led_set_brightness() 144 ar->leds[i].registered = true; in carl9170_led_register_led() 155 if (ar->leds[i].registered) { in carl9170_led_unregister() 157 ar->leds[i].registered = false; in carl9170_led_unregister()
|
| D | carl9170.h | 203 bool registered; member 240 bool registered; member
|
| D | main.c | 529 if (!ar->registered) in carl9170_restart() 2023 ar->registered = true; in carl9170_register() 2066 if (!ar->registered) in carl9170_unregister() 2069 ar->registered = false; in carl9170_unregister() 2098 WARN_ON(ar->registered); in carl9170_free()
|
| /linux-4.1.27/drivers/gpu/drm/msm/mdp/ |
| D | mdp_kms.c | 119 if (!irq->registered) { in mdp_irq_register() 120 irq->registered = true; in mdp_irq_register() 138 if (irq->registered) { in mdp_irq_unregister() 139 irq->registered = false; in mdp_irq_unregister()
|
| D | mdp_kms.h | 69 bool registered; member
|
| /linux-4.1.27/sound/core/ |
| D | jack.c | 46 if (jack->registered) in snd_jack_dev_disconnect() 98 jack->registered = 1; in snd_jack_dev_register() 177 WARN_ON(jack->registered); in snd_jack_set_parent() 213 WARN_ON(jack->registered); in snd_jack_set_key()
|
| D | init.c | 450 if (card->registered) { in snd_card_disconnect() 452 card->registered = false; in snd_card_disconnect() 746 if (!card->registered) { in snd_card_register() 750 card->registered = true; in snd_card_register()
|
| /linux-4.1.27/drivers/input/serio/ |
| D | ps2mult.c | 31 bool registered; member 111 port->registered = true; in ps2mult_serio_start() 124 port->registered = false; in ps2mult_serio_stop() 249 if (in_port->registered) in ps2mult_interrupt() 285 if (in_port->registered) in ps2mult_interrupt()
|
| /linux-4.1.27/drivers/cpuidle/ |
| D | cpuidle.c | 346 if (!dev->registered) in cpuidle_enable_device() 408 dev->registered = 0; in __cpuidle_unregister_device() 439 dev->registered = 1; in __cpuidle_register_device() 457 if (dev->registered) in cpuidle_register_device() 496 if (!dev || dev->registered == 0) in cpuidle_unregister_device()
|
| /linux-4.1.27/Documentation/driver-model/ |
| D | porting.txt | 23 The generic objects must be registered with the driver model core. By 125 When devices are discovered or registered with the bus type, the 139 The order of this list is determined by the parent of registered 165 Once the generic device has been initialized, it can be registered 183 When the device is registered, a directory in sysfs is created. 307 is registered. 329 registered with the bus at any time. When registration happens, 334 bus driver compares these IDs to the IDs of devices registered with it. 346 When a device is registered, the bus's list of drivers is iterated 349 When a driver is registered, the bus's list of devices is iterated [all …]
|
| D | platform.txt | 77 but in some cases extra devices might be registered. For example, a kernel 159 - Whenever a device is registered, the drivers for that bus are 160 checked for matches. Platform devices should be registered very 163 - When a driver is registered using platform_driver_register(), all 185 should be hardware configuration for the serial port. Devices registered 192 User specified early platform devices will be registered at this point. 211 automatically registered during step 2 or 3. The serial driver example 217 registered early platform devices associated with a certain class with 218 registered early platform drivers. Matched devices will get probed().
|
| D | class.txt | 43 Device classes are registered and unregistered with the core using: 74 Device drivers are added to device classes when they are registered 92 Drivers registered with the class get a symlink in the drivers/ directory 146 to every interface that is registered with the device class.
|
| D | bus.txt | 33 into a global list of bus types. Once the bus object is registered, 54 When a driver is registered with the bus, the bus's list of devices is 96 Drivers registered with the bus get a directory in the bus's drivers
|
| D | device.txt | 98 registered in the kernel, a uevent is generated to notify userspace (like 100 device is registered, then userspace won't get notified and userspace will
|
| D | driver.txt | 115 Once the object has been registered, it may access the common fields of 131 When a driver is registered, a sysfs directory is created in its
|
| D | binding.txt | 44 Upon the successful completion of probe, the device is registered with
|
| /linux-4.1.27/Documentation/s390/ |
| D | qeth.txt | 26 or a VLAN is registered or unregistered on the network served by the device. 30 notifications are started afresh, a new host or VLAN is registered or 37 MAC=xx:xx:xx:xx:xx:xx - MAC address of the host that is being registered
|
| D | driver-model.txt | 167 notify function is registered). If the driver wants to keep the 172 If not, the old device is removed and a new one registered. By the 175 removed and re-registered. 187 The handler is registered with the common layer during set_online() processing
|
| D | CommonIO | 85 All devices ignored but still registered and not online (= not in use)
|
| /linux-4.1.27/drivers/gpu/drm/omapdrm/ |
| D | omap_irq.c | 55 if (!WARN_ON(irq->registered)) { in __omap_irq_register() 56 irq->registered = true; in __omap_irq_register() 79 if (!WARN_ON(!irq->registered)) { in __omap_irq_unregister() 80 irq->registered = false; in __omap_irq_unregister()
|
| D | omap_crtc.c | 317 if (omap_crtc->apply_irq.registered) in apply_worker() 455 WARN_ON(omap_crtc->apply_irq.registered); in omap_crtc_destroy()
|
| D | omap_drv.h | 77 bool registered; member
|
| /linux-4.1.27/drivers/input/joystick/ |
| D | grip_mp.c | 41 int registered; member 394 if (port->registered) { in get_and_decode_packet() 398 port->registered = 0; in get_and_decode_packet() 421 if (!port->registered) { in get_and_decode_packet() 621 port->registered = 1; in register_slot() 673 if (grip->port[i]->registered) in grip_disconnect()
|
| /linux-4.1.27/Documentation/power/regulator/ |
| D | machine.txt | 40 Constraints can now be registered by defining a struct regulator_init_data 61 Regulator-1 supplies power to Regulator-2. This relationship must be registered 78 Finally the regulator devices must be registered in the usual manner.
|
| /linux-4.1.27/kernel/ |
| D | async.c | 184 if (domain->registered) in __async_schedule() 255 WARN_ON(!domain->registered || !list_empty(&domain->pending)); in async_unregister_domain() 256 domain->registered = 0; in async_unregister_domain()
|
| /linux-4.1.27/drivers/auxdisplay/ |
| D | ks0108.c | 154 goto registered; in ks0108_init() 160 registered: in ks0108_init()
|
| /linux-4.1.27/drivers/staging/iio/Documentation/ |
| D | trigger.txt | 3 Many triggers are provided by hardware that will also be registered as 5 such triggers are registered with the core in the same way as
|
| D | device.txt | 75 be registered afterwards (otherwise the whole parentage of devices
|
| /linux-4.1.27/arch/m68k/amiga/ |
| D | config.c | 623 bool registered; in amiga_savekmsg_setup() local 641 registered = !!amiga_console_driver.write; in amiga_savekmsg_setup() 643 if (!registered) in amiga_savekmsg_setup() 726 bool registered; in amiga_debug_setup() local 732 registered = !!amiga_console_driver.write; in amiga_debug_setup() 734 if (!registered) in amiga_debug_setup()
|
| /linux-4.1.27/net/8021q/ |
| D | Kconfig | 27 automatic propagation of registered VLANs to switches. 37 automatic propagation of registered VLANs to switches; it
|
| /linux-4.1.27/net/rfkill/ |
| D | core.c | 59 bool registered; member 131 if (!rfkill->registered) in rfkill_led_trigger_event() 227 if (!rfkill->registered) in rfkill_event() 479 if (!rfkill->registered) in rfkill_set_hw_state() 517 if (!rfkill->registered) in rfkill_set_sw_state() 534 BUG_ON(rfkill->registered); in rfkill_init_sw_state() 566 if (!rfkill->registered) { in rfkill_set_states() 937 if (rfkill->registered) { in rfkill_register() 956 rfkill->registered = true; in rfkill_register() 1003 rfkill->registered = false; in rfkill_unregister()
|
| /linux-4.1.27/arch/m68k/atari/ |
| D | debug.c | 290 bool registered; in atari_debug_setup() local 299 registered = !!atari_console_driver.write; in atari_debug_setup() 323 if (atari_console_driver.write && !registered) in atari_debug_setup()
|
| /linux-4.1.27/drivers/gpu/host1x/ |
| D | bus.c | 118 device->registered = true; in host1x_subdev_register() 132 if (device->registered) { in __host1x_subdev_unregister() 133 device->registered = false; in __host1x_subdev_unregister() 434 if (device->registered) { in host1x_device_del() 435 device->registered = false; in host1x_device_del()
|
| /linux-4.1.27/net/wireless/ |
| D | sysfs.c | 106 if (rdev->wiphy.registered) { in wiphy_suspend() 132 if (rdev->wiphy.registered) in wiphy_resume()
|
| D | core.c | 726 rdev->wiphy.registered = true; in wiphy_register() 776 rdev->wiphy.registered = false; in wiphy_unregister()
|
| /linux-4.1.27/sound/usb/line6/ |
| D | toneport.c | 41 bool registered; member 331 led->registered = true; in toneport_init_leds() 344 if (!led->registered) in toneport_remove_leds() 347 led->registered = false; in toneport_remove_leds()
|
| /linux-4.1.27/Documentation/fmc/ |
| D | parameters.txt | 7 are devices are registered, not when fmc.ko is loaded. 11 EEPROM of any device that is registered, using printk.
|
| D | API.txt | 32 registered at the same time because if the FPGA is reprogrammed, all
|
| D | mezzanine.txt | 12 already programmed when the device is registered to the bus core. 17 ADC cards. If the device module registered a remote device (for example
|
| /linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
| D | vpfe.h | 68 unsigned registered:1; member
|
| D | vpfe_mc_capture.c | 386 sdinfo->registered = 1; in register_i2c_devices()
|
| /linux-4.1.27/sound/pci/hda/ |
| D | hda_beep.h | 37 unsigned int registered:1; member
|
| D | hda_beep.c | 145 if (beep->registered) in snd_hda_do_detach() 289 beep->registered = true; in snd_hda_register_beep_device()
|
| D | hda_bind.c | 97 if (codec->card->registered) { in hda_codec_driver_probe()
|
| D | hda_codec.h | 262 unsigned int registered:1; /* codec was registered */ member
|
| /linux-4.1.27/drivers/pci/hotplug/ |
| D | sgi_hotplug.c | 672 int registered = 0; in sn_pci_hotplug_init() local 695 registered = 1; in sn_pci_hotplug_init() 697 registered = 0; in sn_pci_hotplug_init() 702 return registered == 1 ? 0 : -ENODEV; in sn_pci_hotplug_init()
|
| /linux-4.1.27/Documentation/hwmon/ |
| D | hwmon-kernel-api.txt | 63 hwmon_device_unregister deregisters a registered hardware monitoring device. 64 The parameter of this function is the pointer to the registered hardware 66 remove function if the hardware monitoring device was registered with
|
| D | abituguru3 | 37 registered.
|
| D | abituguru | 50 registered.
|
| /linux-4.1.27/block/ |
| D | elevator.c | 808 e->registered = 1; in elv_register_queue() 821 e->registered = 0; in elv_unregister_queue() 895 bool registered = old->registered; in elevator_switch() local 908 if (registered) in elevator_switch() 920 if (registered) { in elevator_switch()
|
| /linux-4.1.27/include/sound/ |
| D | jack.h | 76 int registered; member
|
| D | core.h | 136 bool registered; /* card_dev is registered? */ member
|
| /linux-4.1.27/Documentation/ia64/ |
| D | serial.txt | 15 kernel registered the device described by the HCDP as 20 the kernel registered those as /dev/ttyS0 and /dev/ttyS1. 22 Any additional ACPI or PCI devices were registered sequentially 27 change, but we registered devices that might not really exist.
|
| /linux-4.1.27/drivers/net/ethernet/tile/ |
| D | tilepro.c | 178 bool registered; member 1077 info->registered = true; in tile_net_register() 1100 if (info == NULL || !info->registered) in tile_net_deregister() 1132 if (info == NULL || !info->registered) in tile_net_unregister() 1175 if (info != NULL && info->registered) { in tile_net_stop_aux() 1177 info->registered = false; in tile_net_stop_aux() 1255 if (!info->registered) { in tile_net_open_inner() 1271 if (info->registered) in tile_net_open_inner() 1885 if (!info->registered) in tile_net_tx()
|
| /linux-4.1.27/Documentation/networking/ |
| D | tcp.txt | 29 A congestion control mechanism can be registered through functions in 31 registered via passing a tcp_congestion_ops struct to 54 The default congestion control will be the last one registered (LIFO);
|
| D | regulatory.txt | 90 do not need a callback as the channels registered by them are 129 was found. You need to do this after you have registered your wiphy. You 170 Then in some part of your code after your wiphy has been registered:
|
| D | lapb-module.txt | 114 LAPB_OK LAPB registered successfully. 115 LAPB_BADTOKEN Token is already registered. 199 module to call when an event occurs. They are registered with the LAPB
|
| D | phy.txt | 39 registered as a distinct device. 62 5) The bus must also be declared somewhere as a device, and registered. 111 PHY's software state machine, and registered for the PHY's interrupt, if it 314 registered for it, matching based on UID (contained in the PHY device's phy_id
|
| D | netdevices.txt | 14 If device has registered successfully, it will be freed on last use
|
| D | ieee802154.txt | 110 freeing registered PHY
|
| D | xfrm_sync.txt | 102 at least one listener registered to listen to the multicast
|
| /linux-4.1.27/Documentation/acpi/ |
| D | scan_handlers.txt | 9 registered with the driver core for every device object in the ACPI namespace 24 been registered. For example, if the given device node represents a PCI host 26 enumerated and PCI devices on that bus to be registered with the driver core.
|
| D | enumeration.txt | 65 DMA controllers enumerated via ACPI should be registered in the system to 109 dma_request_slave_channel() will call xlate_func() for each registered DMA 227 registered.
|
| D | gpio-properties.txt | 96 table was previously registered.
|
| D | video_extension.txt | 18 interface control. For every registered class device, there will be a
|
| /linux-4.1.27/Documentation/powerpc/ |
| D | firmware-assisted-dump.txt | 45 These registered sections of memory are reserved by the first 50 or 256MB) of RAM to the previous registered region. It will 190 0 = fadump is not registered. 191 1 = fadump is registered and ready to handle system crash. 195 fadump. Once the fadump is un-registered, the system crash will not 226 Contents when fadump is registered during first kernel
|
| /linux-4.1.27/drivers/isdn/mISDN/ |
| D | l1oip.h | 50 int registered; /* if registered with mISDN */ member
|
| D | l1oip_core.c | 1260 if (hc->registered && hc->chan[hc->d_idx].dch) in release_card() 1429 hc->registered = 1; in init_card()
|
| /linux-4.1.27/Documentation/connector/ |
| D | connector.txt | 36 idx and val are unique identifiers which must be registered in the 62 It must be registered in connector.h for legal in-kernel users. 90 be searched through all registered connector users, 128 selected ids will be turned on or off (registered or unregistered its
|
| /linux-4.1.27/Documentation/ |
| D | video-output.txt | 9 laptop, The ACPI video driver registered its output devices and read/write
|
| D | robust-futexes.txt | 72 are to be cleaned up, because a robust futex might have been registered 87 userspace list is registered with the kernel via a new syscall [this 92 In the common case, at do_exit() time, there is no list registered, so 94 comparison. If the thread has registered a list, then normally the list 166 one to query the registered list pointer:
|
| D | kprobes.txt | 58 When a kprobe is registered, Kprobes makes a copy of the probed 139 zero when the return probe is registered, and is incremented every 177 When a probe is registered, before attempting this optimization, 344 is set KPROBE_FLAG_DISABLED, that kp will be registered but disabled, 457 at any time after the probe has been registered. 504 enable_*probe(). You must specify the probe which has been registered. 514 the probe which has been registered. 687 With recent kernels (> 2.6.20) the list of registered kprobes is visible 690 /sys/kernel/debug/kprobes/list: Lists all registered probes on the system 710 Provides a knob to globally and forcibly turn registered kprobes ON or OFF. [all …]
|
| D | kobject.txt | 165 After a kobject has been registered with the kobject core, you need to 246 is registered in the system. 254 Once you registered your kobject via kobject_add(), you must never use 305 automatically created for any kobject that is registered with this ktype. 384 before the kobject is added, the kobject is registered with the kset, but 390 After a kobject has been registered with the kobject core successfully, it
|
| D | sysrq.txt | 209 it is currently registered in that slot. This is in case the slot has been 210 overwritten since you registered it. 214 a number of operations registered into it at compile time, but is mutable,
|
| D | rpmsg.txt | 168 (using the rx callback they provide when they registered to the rpmsg bus). 202 a pointer to a previously-registered rpmsg_driver struct. 289 If/when a relevant rpmsg driver is registered, it will be immediately probed
|
| D | parport.txt | 185 port is registered, it picks up the default spintime. 186 When a new device is registered, it picks up the
|
| D | parport-lowlevel.txt | 127 (i.e. there are no devices registered on them). 388 A 'struct pardevice *': a handle to the registered parallel port 486 'dev' is registered. 'parport_claim' does not block, but 912 Set the inactivity timeout, in jiffies, for a registered device. The 931 Once set for a registered device, the timeout will remain at the set
|
| D | rfkill.txt | 110 Additionally, each rfkill device is registered in sysfs and emits uevents.
|
| D | IPMI.txt | 324 registers for events. After that, if multiple users are registered 332 user may be registered for each netfn/cmd/channel, but different users 342 As mentioned before, multiple SMI interfaces may be registered to the 593 The default is -1, which means to pick the first one registered. 719 registered.
|
| D | remoteproc.txt | 97 Note: _never_ directly deallocate @rproc, even if it was not registered 290 When a new remote processor is registered, the remoteproc framework
|
| D | vme_api.txt | 36 be registered. The match function should return 1 if a device should be 74 Once a driver has registered with the VME core the provided match routine will
|
| D | media-framework.txt | 91 Unregistering a media device that hasn't been registered is *NOT* safe. 143 ID will never be reused for a newly registered entity.
|
| D | padata.txt | 93 Here cpumask_change_notifier is registered notifier, notification_mask
|
| /linux-4.1.27/Documentation/virtual/kvm/devices/ |
| D | vfio.txt | 11 about their presence. When registered with KVM, a reference to the
|
| /linux-4.1.27/drivers/media/v4l2-core/ |
| D | v4l2-device.c | 174 if (sd->internal_ops && sd->internal_ops->registered) { in v4l2_device_register_subdev() 175 err = sd->internal_ops->registered(sd); in v4l2_device_register_subdev()
|
| /linux-4.1.27/Documentation/leds/ |
| D | leds-class-flash.txt | 13 registered in the LED subsystem with led_classdev_flash_register function.
|
| D | leds-lp3944.txt | 35 registered using the i2c_board_info mechanism.
|
| D | leds-lm3556.txt | 69 Driver expects it is registered using the i2c_board_info mechanism.
|
| D | leds-lp55xx.txt | 116 As soon as 'loading' is set to 0, registered callback is called.
|
| /linux-4.1.27/net/netlink/ |
| D | af_netlink.h | 83 int registered; member
|
| D | af_netlink.c | 1211 if (!nl_table[protocol].registered) { in netlink_create() 1217 if (nl_table[protocol].registered && in netlink_create() 1307 BUG_ON(nl_table[sk->sk_protocol].registered == 0); in netlink_release() 1308 if (--nl_table[sk->sk_protocol].registered == 0) { in netlink_release() 1318 nl_table[sk->sk_protocol].registered = 0; in netlink_release() 1461 if (!nl_table[sk->sk_protocol].registered) { in netlink_realloc_groups() 2564 if (!nl_table[unit].registered) { in __netlink_kernel_create() 2576 nl_table[unit].registered = 1; in __netlink_kernel_create() 2579 nl_table[unit].registered++; in __netlink_kernel_create() 3183 nl_table[NETLINK_USERSOCK].registered = 1; in netlink_add_usersock_entry()
|
| /linux-4.1.27/drivers/staging/fwserial/ |
| D | Kconfig | 28 adapter supports. The actual number of serial ports registered
|
| /linux-4.1.27/drivers/media/platform/marvell-ccic/ |
| D | cafe-driver.c | 52 int registered; /* Fully initialized? */ member 441 handled = cam->registered && mccic_irq(mcam, irqs); in cafe_irq() 527 cam->registered = 1; in cafe_pci_probe()
|
| /linux-4.1.27/Documentation/trace/ |
| D | uprobetracer.txt | 79 * Unset registered event: 83 * Print out the events that are registered: 110 in the object. We can see the events that are registered by looking at the
|
| /linux-4.1.27/Documentation/cpuidle/ |
| D | governor.txt | 20 More than one governor can be registered at the same time and
|
| /linux-4.1.27/Documentation/usb/ |
| D | functionfs.txt | 5 the user space driver has registered by writing descriptors and 61 The gadget is registered only after all the declared function
|
| /linux-4.1.27/drivers/video/fbdev/ |
| D | fsl-diu-fb.c | 339 int registered; member 395 .registered = 0, 403 .registered = 0, 412 .registered = 0, 421 .registered = 0, 430 .registered = 0, 1564 mfbi->registered = 1; in install_fb() 1574 if (!mfbi->registered) in uninstall_fb() 1582 mfbi->registered = 0; in uninstall_fb()
|
| D | pxafb.h | 95 int registered; member
|
| /linux-4.1.27/sound/soc/omap/ |
| D | Kconfig | 23 under DSS HDMI device. Omap-pcm is registered for platform 27 The device for the dirver is registered by OMAPDSS hdmi
|
| /linux-4.1.27/arch/arm/probes/kprobes/ |
| D | test-core.c | 1215 bool registered; member 1221 if (probe->registered) { in unregister_test_probe() 1225 probe->registered = false; in unregister_test_probe() 1232 if (probe->registered) in register_test_probe() 1237 probe->registered = true; in register_test_probe()
|
| /linux-4.1.27/Documentation/thermal/ |
| D | sysfs-api.txt | 42 thermal cooling devices registered at the same time. 169 Thermal zone device sys I/F, created once it's registered: 180 Thermal cooling device sys I/F, created once it's registered: 199 class device and build the associated hwmon sysfs I/F for all the registered 281 this temperature to platform emulation function if registered or 320 It has one processor and one fan, which are both registered as
|
| /linux-4.1.27/Documentation/accounting/ |
| D | cgroupstats.txt | 6 interface. A new set of cgroup operations are registered with commands
|
| D | taskstats.txt | 37 registered listener. Using cpumasks allows the data received by one listener
|
| /linux-4.1.27/Documentation/power/ |
| D | suspend-and-cpuhotplug.txt | 65 ======> by running all registered callbacks. | 134 ======> by running all registered callbacks. 208 update driver's callback registered for CPU hotplug events) calls 258 inappropriate code by the callbacks registered for such CPU hotplug events.
|
| D | pm_qos_interface.txt | 42 registered notifiers are called only if the target value is now different. 79 As long as the device node is held open that process has a registered 113 registered notifiers are called only if the target value is now different.
|
| D | devices.txt | 257 get registered: a child can never be registered, probed or resumed before 319 from being registered; the PM core would never know that all the 321 registered at will. (By contrast, devices may be unregistered at any 326 registered below the device. The method may also prepare the device or 414 however, that new children may be registered below the device as soon as
|
| /linux-4.1.27/Documentation/video4linux/ |
| D | v4l2-framework.txt | 101 and registered media_device instance. 141 Sometimes you need to iterate over all devices registered by a specific 146 You can iterate over all registered devices as follows: 333 first (traditional) possibility is to have subdevices registered by bridge 341 There are however also situations where subdevices have to be registered 356 This can fail if the subdev module disappeared before it could be registered. 361 entity will be automatically registered with the media device. 416 up the device, but once the subdev is registered it is completely transparent. 424 attempts. Once all conditions are met the subdevice shall be registered using 426 the v4l2_async_unregister_subdev() call. Subdevices registered this way are [all …]
|
| D | soc-camera.txt | 46 A host camera driver is registered using the
|
| /linux-4.1.27/Documentation/devicetree/bindings/bus/ |
| D | brcm,bus-axi.txt | 10 memory ranges they are using and they get registered afterwards.
|
| /linux-4.1.27/Documentation/scsi/ |
| D | ufs.txt | 121 This is done through UFSHCD SCSI error handling routines registered 124 UFSHCD Routines to perform these tasks are registered with
|
| D | bnx2fc.txt | 6 transparent. Devices discovered on the SAN will be registered and unregistered
|
| D | megaraid.txt | 67 Common module dedicates one uioc_t packet to each controller registered. This
|
| /linux-4.1.27/lib/ |
| D | kobject.c | 970 int registered = 0; in kobj_ns_type_registered() local 974 registered = kobj_ns_ops_tbl[type] != NULL; in kobj_ns_type_registered() 977 return registered; in kobj_ns_type_registered()
|
| /linux-4.1.27/Documentation/ABI/stable/ |
| D | sysfs-class-rfkill | 14 Each registered rfkill driver is represented by an rfkillX
|
| /linux-4.1.27/Documentation/blockdev/ |
| D | paride.txt | 148 paride: bpck registered as protocol 0 149 paride: epat registered as protocol 1 202 paride: epat registered as protocol 0 204 paride: k951 registered as protocol 1 205 paride: k971 registered as protocol 2 228 paride: epat registered as protocol 0
|
| /linux-4.1.27/drivers/staging/ft1000/ |
| D | ft1000.h | 341 int registered; member
|
| /linux-4.1.27/Documentation/vm/ |
| D | ksm.txt | 9 have been registered with it, looking for pages of identical content which 79 but leave mergeable areas registered for next run
|
| /linux-4.1.27/Documentation/timers/ |
| D | highres.txt | 49 sources, which are registered in the framework and selected on a quality based 90 Clock event devices are registered either by the architecture dependent boot 145 appropriate clock sources and clock event devices have to be registered before 150 the usability of the registered clock sources and clock event devices before
|
| /linux-4.1.27/Documentation/devicetree/bindings/serial/ |
| D | 8250.txt | 39 RTAS and should not be registered.
|
| /linux-4.1.27/Documentation/ABI/testing/ |
| D | sysfs-firmware-memmap | 6 kernel reads. The resources from that memory map are registered
|
| D | sysfs-bus-rbd | 14 will be assigned for any registered block device. If snapshot is used, it will
|
| D | sysfs-power | 131 registered by loadable kernel modules since boot) which match 166 the current number of registered wakeup events and it blocks if 217 will be registered, assigned the given name and activated.
|
| D | sysfs-ptp | 14 hardware clock registered into the PTP class driver
|
| D | sysfs-firmware-acpi | 78 to a Linux device driver registered on an ACPI device,
|
| /linux-4.1.27/drivers/usb/gadget/function/ |
| D | storage_common.h | 101 unsigned int registered:1; member
|
| /linux-4.1.27/drivers/crypto/ |
| D | omap-des.c | 98 unsigned int registered; member 1144 dd->pdata->algs_info[i].registered++; in omap_des_probe() 1151 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_des_probe() 1181 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_des_remove()
|
| D | omap-aes.c | 117 unsigned int registered; member 1255 dd->pdata->algs_info[i].registered++; in omap_aes_probe() 1262 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_aes_probe() 1291 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_aes_remove()
|
| D | omap-sham.c | 182 unsigned int registered; member 1969 dd->pdata->algs_info[i].registered++; in omap_sham_probe() 1977 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_sham_probe() 2001 for (j = dd->pdata->algs_info[i].registered - 1; j >= 0; j--) in omap_sham_remove()
|
| D | ixp4xx_crypto.c | 198 int registered; member 1473 ixp4xx_algos[i].registered = 1; in ixp_module_init() 1484 if (ixp4xx_algos[i].registered) in ixp_module_exit()
|
| /linux-4.1.27/Documentation/isdn/ |
| D | INTERFACE.CAPI | 44 From then on, Kernel CAPI may call the registered callback functions for the 123 releasing all registered applications 344 In addition, every registered CAPI controller has an associated traceflag 347 showcapimsgs parameter when the controller is registered, but can later be
|
| D | README.gigaset | 279 eg. the first registered DECT handset, give "**11" as the called party 291 is registered to a DECT base. 293 If the M101/M105 device is not registered to a base, initialization of 331 Check whether your M10x wireless device is correctly registered to the
|
| /linux-4.1.27/drivers/media/pci/ttpci/ |
| D | av7110.h | 222 int registered; member
|
| /linux-4.1.27/drivers/isdn/hardware/eicon/ |
| D | os_bri.c | 259 a->xdi_adapter.irq_info.registered = 1; in diva_bri_init_card() 279 if (a->xdi_adapter.irq_info.registered) { in diva_bri_cleanup_adapter() 282 a->xdi_adapter.irq_info.registered = 0; in diva_bri_cleanup_adapter()
|
| D | platform.h | 223 int registered; member
|
| D | os_pri.c | 252 a->xdi_adapter.irq_info.registered = 1; in diva_pri_init_card() 274 if (a->xdi_adapter.irq_info.registered) { in diva_pri_cleanup_adapter() 277 a->xdi_adapter.irq_info.registered = 0; in diva_pri_cleanup_adapter()
|
| D | os_4bri.c | 447 a->xdi_adapter.irq_info.registered = 1; in diva_4bri_init_card() 483 if (a->xdi_adapter.irq_info.registered) { in diva_4bri_cleanup_adapter() 486 a->xdi_adapter.irq_info.registered = 0; in diva_4bri_cleanup_adapter()
|
| /linux-4.1.27/Documentation/devicetree/bindings/net/ |
| D | keystone-netcp.txt | 94 - interfaces: specification for each of the switch port to be registered as a 112 registered as a network interface. NetCP driver
|
| /linux-4.1.27/drivers/char/ipmi/ |
| D | Kconfig | 26 registered with the message handler.
|
| /linux-4.1.27/drivers/gpu/drm/msm/dsi/ |
| D | dsi_host.c | 240 bool registered; member 1585 if (!msm_host->registered) { in msm_dsi_host_register() 1592 msm_host->registered = true; in msm_dsi_host_register() 1617 if (msm_host->registered) { in msm_dsi_host_unregister() 1621 msm_host->registered = false; in msm_dsi_host_unregister()
|
| /linux-4.1.27/drivers/block/ |
| D | cciss_scsi.c | 123 int registered; member 713 shba->registered = 0; in cciss_scsi_setup() 1523 if (sa->registered) { in DEF_SCSI_QCMD() 1548 if (sa->registered) { in cciss_engage_scsi() 1553 sa->registered = 1; in cciss_engage_scsi()
|
| /linux-4.1.27/drivers/mfd/ |
| D | sm501.c | 53 unsigned int registered : 1; member 1083 gpio->registered = 1; in sm501_register_gpio() 1104 if (!sm->gpio.registered) in sm501_gpio_remove() 1125 return sm->gpio.registered; in sm501_gpio_isregistered()
|
| /linux-4.1.27/drivers/video/fbdev/intelfb/ |
| D | intelfb.h | 356 int registered; member
|
| /linux-4.1.27/Documentation/wimax/ |
| D | README.wimax | 38 When a device is registered with the WiMAX stack, a set of debugfs
|
| /linux-4.1.27/Documentation/devicetree/ |
| D | overlay-notes.txt | 84 so a bar platform device will be registered and if a matching device driver
|
| D | usage-model.txt | 351 really probably is best registered as a platform_device. 363 what about the children of the SoC node? Shouldn't they be registered 365 is for child devices to be registered by the parent's device driver at 381 will also get its child nodes registered. In the Tegra case, the code
|
| /linux-4.1.27/Documentation/hid/ |
| D | hid-sensor.txt | 59 HID-SENSOR-200073 is registered for an Accelerometer 3D driver. 140 registered callback function to process the sample.
|
| D | hid-transport.txt | 63 device. Once a device is registered with HID core, the callbacks provided via 67 HID core will operate a device as long as it is registered regardless of any
|
| /linux-4.1.27/Documentation/misc-devices/mei/ |
| D | mei-client-bus.txt | 47 Once registered on the ME Client bus, a driver will typically try to do some I/O on
|
| /linux-4.1.27/Documentation/ptp/ |
| D | ptp.txt | 43 registered clock. User space can use an open file descriptor from
|
| /linux-4.1.27/drivers/devfreq/ |
| D | Kconfig | 6 devfreq, a generic DVFS framework can be registered for a device
|
| /linux-4.1.27/drivers/media/pci/ivtv/ |
| D | ivtvfb.c | 1284 int registered = 0; in ivtvfb_init() local 1294 err = driver_for_each_device(drv, NULL, ®istered, ivtvfb_callback_init); in ivtvfb_init() 1296 if (!registered) { in ivtvfb_init()
|
| /linux-4.1.27/Documentation/w1/masters/ |
| D | ds2490 | 39 - The registered w1_bus_master functions don't define error
|
| /linux-4.1.27/Documentation/fb/ |
| D | ep93xx-fb.txt | 39 The framebuffer device can be registered by adding the following to
|
| /linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
| D | en_main.c | 91 if (priv->registered) in en_print()
|
| D | mlx4_en.h | 532 int registered; member
|
| /linux-4.1.27/Documentation/cpu-freq/ |
| D | core.txt | 41 registered with the core, and will not be unloaded until
|
| /linux-4.1.27/drivers/s390/char/ |
| D | defkeymap.map | 51 keycode 47 = nul registered
|
| /linux-4.1.27/drivers/thermal/ |
| D | Kconfig | 24 In case a sensor is registered with the thermal 258 addition to DTSs on CPU cores. Each DTS will be registered as a
|
| /linux-4.1.27/Documentation/serial/ |
| D | driver | 288 If any fail, no resources should be registered when this function 402 registered using uart_add_one_port after this call has succeeded. 410 uart_remove_one_port() if it registered them with uart_add_one_port().
|
| D | tty.txt | 14 Line disciplines are registered with tty_register_ldisc() passing the 30 Heed this warning: the reference count field of the registered copies of the
|
| /linux-4.1.27/Documentation/sound/alsa/soc/ |
| D | codec.txt | 33 registered with the core by your machine driver.
|
| /linux-4.1.27/Documentation/filesystems/nfs/ |
| D | rpc-cache.txt | 91 3/ A cache needs to be registered using cache_register(). This 130 Each cache has a name, and when the cache is registered, a directory
|
| /linux-4.1.27/Documentation/i2c/ |
| D | instantiating-devices | 18 i2c_board_info which is registered by calling i2c_register_board_info(). 47 question is registered, the I2C devices will be instantiated automatically
|
| /linux-4.1.27/Documentation/rapidio/ |
| D | rapidio.txt | 88 registered for a device, all common RapidIO services have to be registered as 100 After all active master ports are registered with a RapidIO subsystem,
|
| D | sysfs.txt | 119 named as "rapidioN" where N = mport ID registered with RapidIO subsystem.
|
| /linux-4.1.27/drivers/video/fbdev/sis/ |
| D | sis.h | 552 int registered; member
|
| /linux-4.1.27/Documentation/x86/ |
| D | entry_64.txt | 8 kernel code. Most of these entry points are registered in
|
| /linux-4.1.27/drivers/edac/ |
| D | sb_edac.c | 707 bool registered = false; in haswell_get_memory_type() local 717 registered = true; in haswell_get_memory_type() 721 if (registered) in haswell_get_memory_type() 726 if (registered) in haswell_get_memory_type()
|
| /linux-4.1.27/kernel/printk/ |
| D | printk.c | 2743 if (!dumper->registered) { in kmsg_dump_register() 2744 dumper->registered = 1; in kmsg_dump_register() 2767 if (dumper->registered) { in kmsg_dump_unregister() 2768 dumper->registered = 0; in kmsg_dump_unregister()
|
| /linux-4.1.27/drivers/usb/misc/ |
| D | ftdi-elan.c | 164 unsigned registered:1; member 570 } else if (ftdi->registered == 0) { in ftdi_elan_status_work() 573 ftdi->registered = 1; in ftdi_elan_status_work() 587 ftdi->registered = 0; in ftdi_elan_status_work() 2827 if (ftdi->registered) { in ftdi_elan_disconnect() 2832 ftdi->registered = 0; in ftdi_elan_disconnect()
|
| /linux-4.1.27/Documentation/infiniband/ |
| D | user_mad.txt | 26 ioctl. Also, all agents registered through a file descriptor will
|
| /linux-4.1.27/Documentation/watchdog/ |
| D | watchdog-kernel-api.txt | 35 The watchdog_unregister_device routine deregisters a registered watchdog timer 36 device. The parameter of this routine is the pointer to the registered
|
| /linux-4.1.27/Documentation/block/ |
| D | data-integrity.txt | 152 profile (struct blk_integrity). This optional profile is registered 250 registered as capable:
|
| /linux-4.1.27/include/media/ |
| D | v4l2-subdev.h | 566 int (*registered)(struct v4l2_subdev *sd); member
|
| /linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
| D | trivial-devices.txt | 76 nxp,pca9556 Octal SMBus and I2C registered interface
|
| /linux-4.1.27/Documentation/device-mapper/ |
| D | statistics.txt | 81 List all regions registered with @stats_create.
|
| /linux-4.1.27/drivers/staging/ft1000/ft1000-pcmcia/ |
| D | ft1000_hw.c | 1897 if (info->registered) { in stop_ft1000_card() 1899 info->registered = 0; in stop_ft1000_card() 1987 info->registered = 1; in init_ft1000_card()
|
| /linux-4.1.27/Documentation/input/ |
| D | gameport-programming.txt | 126 Number assigned to the gameport when registered. Informational purpose only.
|
| /linux-4.1.27/Documentation/console/ |
| D | console.txt | 31 examined. This shows the console backends currently registered by the
|
| /linux-4.1.27/Documentation/power/powercap/ |
| D | powercap.txt | 230 power zone registered earlier.
|
| /linux-4.1.27/Documentation/devicetree/bindings/media/ |
| D | samsung-fimc.txt | 31 clocks registered by the camera subsystem corresponding to CAM_A_CLKOUT,
|
| /linux-4.1.27/Documentation/pcmcia/ |
| D | driver-changes.txt | 100 A struct pcmcia_device is registered with the device model core,
|
| /linux-4.1.27/Documentation/cdrom/ |
| D | cdrom-standard.tex | 261 is registered with the \UCD. The value $n_minors$ should be a positive 278 The drive-specific, minor-like information that is registered with 299 Using this $struct$, a linked list of the registered minor devices is 328 processes that have the device opened) is registered in $use_count$. The 761 as described in section~\ref{cdrom.c}, should be registered with the 783 the minor device from the list. If it was the last registered minor for 784 the low-level driver, this disconnects the registered device-operation
|
| /linux-4.1.27/scripts/ |
| D | spelling.txt | 790 registerd||registered 791 registeresd||registered
|
| /linux-4.1.27/Documentation/w1/ |
| D | w1.netlink | 84 which will contain list of all registered master ids in the following
|
| /linux-4.1.27/arch/xtensa/kernel/ |
| D | vectors.S | 319 beqz a2, .Ldflt # no handler was registered
|
| /linux-4.1.27/net/key/ |
| D | af_key.c | 52 int registered; member 256 !pfk->registered) in pfkey_broadcast() 1657 if (pfk->registered&(1<<hdr->sadb_msg_satype)) in pfkey_register() 1659 pfk->registered |= (1<<hdr->sadb_msg_satype); in pfkey_register() 1667 pfk->registered &= ~(1<<hdr->sadb_msg_satype); in pfkey_register() 3068 if (pfkey_sk(sk)->registered) { in pfkey_is_alive()
|
| /linux-4.1.27/drivers/media/i2c/ |
| D | as3645a.c | 658 .registered = as3645a_registered,
|
| /linux-4.1.27/fs/ |
| D | Kconfig.binfmt | 158 registered such a binary class with the kernel, you can start one of
|
| /linux-4.1.27/Documentation/arm64/ |
| D | arm-acpi.txt | 264 Device properties that have not been registered with the UEFI Forum should 268 been defined before and either registered in the Linux kernel documentation 281 registered with the UEFI Forum [4], which will review it again for consistency
|
| /linux-4.1.27/Documentation/spi/ |
| D | spi-summary | 209 board should normally be set up and registered. 306 driver is registered: 462 An SPI controller will probably be registered on the platform_bus; write
|
| /linux-4.1.27/drivers/idle/ |
| D | intel_idle.c | 732 if (!dev->registered) in cpu_hotplug_notify()
|