aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2015-06-15 13:51:46 -0400
committerWolfram Sang <wsa@the-dreams.de>2015-06-17 08:16:27 -0400
commit8366610283d08564f65a1af2ec8458df08418727 (patch)
tree69c599a462137cd196ab8936518853cdbbbddd08 /Documentation
parent0f57d86787d8b1076ea8f9cbdddda2a46d534a27 (diff)
i2c: slave: fix the example how to instantiate from userspace
I copied the wrong shell code into the documentation. Sorry to all who tried to get sense out of this current example :/ Slight rewording while we are here. Reported-by: Tim Bakker <bakkert@mymail.vcu.edu> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Cc: stable@kernel.org
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/i2c/slave-interface6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/i2c/slave-interface b/Documentation/i2c/slave-interface
index 389bb5d61854..b228ca54bcf4 100644
--- a/Documentation/i2c/slave-interface
+++ b/Documentation/i2c/slave-interface
@@ -31,10 +31,10 @@ User manual
31=========== 31===========
32 32
33I2C slave backends behave like standard I2C clients. So, you can instantiate 33I2C slave backends behave like standard I2C clients. So, you can instantiate
34them like described in the document 'instantiating-devices'. A quick example 34them as described in the document 'instantiating-devices'. A quick example for
35for instantiating the slave-eeprom driver from userspace: 35instantiating the slave-eeprom driver from userspace at address 0x64 on bus 1:
36 36
37 # echo 0-0064 > /sys/bus/i2c/drivers/i2c-slave-eeprom/bind 37 # echo slave-24c02 0x64 > /sys/bus/i2c/devices/i2c-1/new_device
38 38
39Each backend should come with separate documentation to describe its specific 39Each backend should come with separate documentation to describe its specific
40behaviour and setup. 40behaviour and setup.