summaryrefslogtreecommitdiffstats
path: root/include/linux/mfd/kempld.h
diff options
context:
space:
mode:
authorMichael Brunner <mibru@gmx.de>2014-04-08 08:21:06 +0200
committerLee Jones <lee.jones@linaro.org>2014-06-03 08:11:11 +0100
commit58a9e5b98360e8dcf9c958c0552fb35279e3933f (patch)
tree0783e2632b01ab28f40ebe0ae8f781989f4b3e04 /include/linux/mfd/kempld.h
parented612a349c967dd235d83959f9a0878777a5ae18 (diff)
downloadlinux-stable-58a9e5b98360e8dcf9c958c0552fb35279e3933f.tar.gz
linux-stable-58a9e5b98360e8dcf9c958c0552fb35279e3933f.tar.bz2
linux-stable-58a9e5b98360e8dcf9c958c0552fb35279e3933f.zip
mfd: Add sysfs attributes for Kontron PLD firmware revision
This patch adds attributes to the Kontron PLD driver to allow applications to retrieve firmware information. Additionally the format has been changed to conform with the representation in other Kontron software. Signed-off-by: Michael Brunner <michael.brunner@kontron.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd/kempld.h')
-rw-r--r--include/linux/mfd/kempld.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mfd/kempld.h b/include/linux/mfd/kempld.h
index b911ef3add03..26e0b469e567 100644
--- a/include/linux/mfd/kempld.h
+++ b/include/linux/mfd/kempld.h
@@ -51,6 +51,8 @@
#define KEMPLD_TYPE_DEBUG 0x1
#define KEMPLD_TYPE_CUSTOM 0x2
+#define KEMPLD_VERSION_LEN 10
+
/**
* struct kempld_info - PLD device information structure
* @major: PLD major revision
@@ -60,6 +62,7 @@
* @type: PLD type
* @spec_major: PLD FW specification major revision
* @spec_minor: PLD FW specification minor revision
+ * @version: PLD version string
*/
struct kempld_info {
unsigned int major;
@@ -69,6 +72,7 @@ struct kempld_info {
unsigned int type;
unsigned int spec_major;
unsigned int spec_minor;
+ char version[KEMPLD_VERSION_LEN];
};
/**