diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-09-03 08:11:17 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-10-19 10:19:55 -0400 |
commit | c174a08c72ae77a05be59d0d810dc13239b81e8e (patch) | |
tree | be1b596614c912e29890c24bfcecf48beff6965e | |
parent | 1dd786328ff42b239a00fdbcdaed6fd9709042bf (diff) |
UBI: fix small 80 characters limit style issue
One line was longer than 80 lines, make it shorter.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | drivers/mtd/ubi/build.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 78ae89488a4f..f247c4e7b40d 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c | |||
@@ -95,8 +95,8 @@ DEFINE_MUTEX(ubi_devices_mutex); | |||
95 | static DEFINE_SPINLOCK(ubi_devices_lock); | 95 | static DEFINE_SPINLOCK(ubi_devices_lock); |
96 | 96 | ||
97 | /* "Show" method for files in '/<sysfs>/class/ubi/' */ | 97 | /* "Show" method for files in '/<sysfs>/class/ubi/' */ |
98 | static ssize_t ubi_version_show(struct class *class, struct class_attribute *attr, | 98 | static ssize_t ubi_version_show(struct class *class, |
99 | char *buf) | 99 | struct class_attribute *attr, char *buf) |
100 | { | 100 | { |
101 | return sprintf(buf, "%d\n", UBI_VERSION); | 101 | return sprintf(buf, "%d\n", UBI_VERSION); |
102 | } | 102 | } |