Query: platform_driver_probe
OS: centos
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PLATFORM_DRIVER_PROB(9) Device drivers infrastructure PLATFORM_DRIVER_PROB(9)NAMEplatform_driver_probe - register driver for non-hotpluggable deviceSYNOPSISint platform_driver_probe(struct platform_driver * drv, int (*probe) (struct platform_device *));ARGUMENTSdrv platform driver structure probe the driver probe routine, probably from an __init section, must not return -EPROBE_DEFER.DESCRIPTIONUse this instead of platform_driver_register when you know the device is not hotpluggable and has already been registered, and you want to remove its run-once probe infrastructure from memory after the driver has bound to the device. One typical use for this would be with drivers for controllers integrated into system-on-chip processors, where the controller devices have been configured as part of board setup. This is incompatible with deferred probing so probe must not return -EPROBE_DEFER. Returns zero if the driver registered and bound to a device, else returns a negative error code and with the driver not registered.COPYRIGHTKernel Hackers Manual 3.10 June 2014 PLATFORM_DRIVER_PROB(9)
| Related Man Pages |
|---|
| struct_device_driver(9) - centos |
| device_probe(9) - debian |
| struct_usb_device_driver(9) - suse |
| device_probe(9) - linux |
| device_probe(9) - osx |
| Similar Topics in the Unix Linux Community |
|---|
| Set hard block limit for user using quota |
| How to increment version inside a file? |
| Tar Command |
| Controlling user input |
| [TIP] Processing YAML files with yq |