From: Artem Bityutskiy Date: Fri, 3 Sep 2010 12:11:17 +0000 (+0300) Subject: UBI: fix small 80 characters limit style issue X-Git-Tag: v2.6.37-rc1~169^2~14 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c174a08c72ae77a05be59d0d810dc13239b81e8e;p=karo-tx-linux.git UBI: fix small 80 characters limit style issue One line was longer than 80 lines, make it shorter. Signed-off-by: Artem Bityutskiy --- 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); static DEFINE_SPINLOCK(ubi_devices_lock); /* "Show" method for files in '//class/ubi/' */ -static ssize_t ubi_version_show(struct class *class, struct class_attribute *attr, - char *buf) +static ssize_t ubi_version_show(struct class *class, + struct class_attribute *attr, char *buf) { return sprintf(buf, "%d\n", UBI_VERSION); }