diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2015-05-05 18:35:46 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-08 15:25:54 +0200 |
commit | 9421736356cb4035a2ee10a021b8d0e82fd954a0 (patch) | |
tree | ef05fdb595e6a68513d9d4f7cb38e43ea6af9763 /drivers/staging | |
parent | e82ba62e23bc9d9e57b19fa1a5bdf18fab9a218e (diff) |
staging: unisys: Get rid of uint usage
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/unisys/visorchipset/visorchipset_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index 0d3abce9074a..9b6c768e57ab 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -2120,7 +2120,7 @@ static ssize_t devicedisabled_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - uint id; + unsigned int id; if (kstrtouint(buf, 10, &id) != 0) return -EINVAL; @@ -2137,7 +2137,7 @@ static ssize_t deviceenabled_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - uint id; + unsigned int id; if (kstrtouint(buf, 10, &id) != 0) return -EINVAL; |