diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2013-12-07 16:10:26 +0100 |
---|---|---|
committer | Peter Huewe <peterhuewe@gmx.de> | 2014-01-06 14:37:25 +0100 |
commit | 5f64822d63efa20cee9efe8766b3a62ab6a1f6c3 (patch) | |
tree | 80c0091e59706018c8bc787532d1eae1a6e4c952 /drivers/char/tpm/tpm-sysfs.c | |
parent | 19b94d2df5349acb7785fd7bc96a98541b07916c (diff) | |
download | talos-obmc-linux-5f64822d63efa20cee9efe8766b3a62ab6a1f6c3.tar.gz talos-obmc-linux-5f64822d63efa20cee9efe8766b3a62ab6a1f6c3.zip |
tpm/tpm-sysfs: active_show() can be static
so we make it static
CC: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
CC: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Diffstat (limited to 'drivers/char/tpm/tpm-sysfs.c')
-rw-r--r-- | drivers/char/tpm/tpm-sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm-sysfs.c b/drivers/char/tpm/tpm-sysfs.c index c3503cb70a37..01730a27ae07 100644 --- a/drivers/char/tpm/tpm-sysfs.c +++ b/drivers/char/tpm/tpm-sysfs.c @@ -148,7 +148,7 @@ static ssize_t enabled_show(struct device *dev, struct device_attribute *attr, } static DEVICE_ATTR_RO(enabled); -ssize_t active_show(struct device *dev, struct device_attribute *attr, +static ssize_t active_show(struct device *dev, struct device_attribute *attr, char *buf) { cap_t cap; |