Lines Matching full:driver
2 I2C device driver binding control from user-space in old kernels
12 control how the driver would probe I2C buses and attach to devices. These
13 parameters were known as ``probe`` (to let the driver probe for an extra
14 address), ``force`` (to forcibly attach the driver to a given device) and
15 ``ignore`` (to prevent a driver from probing a given address).
17 With the conversion of the I2C subsystem to the standard device driver
26 Attaching a driver to an I2C device
31 # modprobe <driver> probe=1,0x2d
32 # modprobe <driver> force=1,0x2d
33 # modprobe <driver> force_<device>=1,0x2d
39 Preventing a driver from attaching to an I2C device
44 # modprobe <driver> ignore=1,0x2f
49 # modprobe <driver>
52 the driver. The dummy device will be handled by i2c-core itself, preventing
54 problematic address, and you want another driver to bind to it, then simply