aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic
diff options
context:
space:
mode:
authorJohn Crispin <john@phrozen.org>2017-04-02 07:50:41 +0200
committerJohn Crispin <john@phrozen.org>2017-04-02 07:51:33 +0200
commit97e6b67291036451683cb94ee6b91d07fdd10af5 (patch)
tree3012a559b7ac6003c1ea65400cdf73895b6a03e5 /target/linux/generic
parent15ca32795480ba1c81cd5fb1454b6013321ae632 (diff)
downloadupstream-97e6b67291036451683cb94ee6b91d07fdd10af5.tar.gz
upstream-97e6b67291036451683cb94ee6b91d07fdd10af5.tar.bz2
upstream-97e6b67291036451683cb94ee6b91d07fdd10af5.zip
kernel: fix ubi auto attach logging
The patch is missing a trailing new line Signed-off-by: John Crispin <john@phrozen.org>
Diffstat (limited to 'target/linux/generic')
-rw-r--r--target/linux/generic/patches-4.9/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch8
1 files changed, 5 insertions, 3 deletions
diff --git a/target/linux/generic/patches-4.9/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch b/target/linux/generic/patches-4.9/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch
index 25ded532e8..52a208aed3 100644
--- a/target/linux/generic/patches-4.9/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch
+++ b/target/linux/generic/patches-4.9/490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch
@@ -9,8 +9,10 @@ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
drivers/mtd/ubi/build.c | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
---- a/drivers/mtd/ubi/build.c
-+++ b/drivers/mtd/ubi/build.c
+Index: linux-4.9.17/drivers/mtd/ubi/build.c
+===================================================================
+--- linux-4.9.17.orig/drivers/mtd/ubi/build.c
++++ linux-4.9.17/drivers/mtd/ubi/build.c
@@ -1212,6 +1212,49 @@ static struct mtd_info * __init open_mtd
return mtd;
}
@@ -47,7 +49,7 @@ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
+ mtd->type == MTD_DATAFLASH ||
+ mtd->type == MTD_MLCNANDFLASH) {
+ mutex_lock(&ubi_devices_mutex);
-+ pr_notice("UBI: auto-attach mtd%d", mtd->index);
++ pr_notice("UBI: auto-attach mtd%d\n", mtd->index);
+ err = ubi_attach_mtd_dev(mtd, UBI_DEV_NUM_AUTO, 0, 0);
+ mutex_unlock(&ubi_devices_mutex);
+ if (err < 0) {