diff options
author | Ingo Molnar <mingo@kernel.org> | 2012-10-26 14:50:17 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-10-26 14:50:17 +0200 |
commit | 003db633d6f2d3649ea18652a3c55ad17d4f0e47 (patch) | |
tree | f72783a5d13fda7ab6f760f2223b9983bacbb5cb /drivers | |
parent | 2ab3f29dddfb444c9fcc0a2f3a56ed4bdba41969 (diff) | |
parent | 1462594bf2866c1dc80066ed6f49f4331c551901 (diff) | |
download | linux-3.10-003db633d6f2d3649ea18652a3c55ad17d4f0e47.tar.gz linux-3.10-003db633d6f2d3649ea18652a3c55ad17d4f0e47.tar.bz2 linux-3.10-003db633d6f2d3649ea18652a3c55ad17d4f0e47.zip |
Merge tag 'mca_cfg' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras into x86/ras
Pull x86 RAS changes from Borislav Petkov:
"Rework all config variables used throughout the MCA code and collect
them together into a mca_config struct. This keeps them tightly and
neatly packed together instead of spilled all over the place.
Then, convert those which are used as booleans into real booleans and
save some space."
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/base/core.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index abea76c36a4..c8ae1f6b01b 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c @@ -171,6 +171,27 @@ ssize_t device_show_int(struct device *dev, } EXPORT_SYMBOL_GPL(device_show_int); +ssize_t device_store_bool(struct device *dev, struct device_attribute *attr, + const char *buf, size_t size) +{ + struct dev_ext_attribute *ea = to_ext_attr(attr); + + if (strtobool(buf, ea->var) < 0) + return -EINVAL; + + return size; +} +EXPORT_SYMBOL_GPL(device_store_bool); + +ssize_t device_show_bool(struct device *dev, struct device_attribute *attr, + char *buf) +{ + struct dev_ext_attribute *ea = to_ext_attr(attr); + + return snprintf(buf, PAGE_SIZE, "%d\n", *(bool *)(ea->var)); +} +EXPORT_SYMBOL_GPL(device_show_bool); + /** * device_release - free device structure. * @kobj: device's kobject. |