Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 245127db authored by Mike Murphy's avatar Mike Murphy Committed by Linus Torvalds
Browse files

PATCH [1/2] Documentation/driver-model/device.txt: fix struct device_attribute



Fix the presented definition of struct device_attribute to match the
actual definition in include/linux/device.h

Signed-off-by: Mike Murphy <mamurph[at]cs.clemson.edu>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3d92e8f3
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -128,8 +128,10 @@ Attributes
~~~~~~~~~~
struct device_attribute {
	struct attribute	attr;
        ssize_t (*show)(struct device * dev, char * buf, size_t count, loff_t off);
        ssize_t (*store)(struct device * dev, const char * buf, size_t count, loff_t off);
	ssize_t (*show)(struct device *dev, struct device_attribute *attr,
			char *buf);
	ssize_t (*store)(struct device *dev, struct device_attribute *attr,
			 const char *buf, size_t count);
};

Attributes of devices can be exported via drivers using a simple