kernel: fix compiler warning in mtdsplit_minor.c under 4.4
authorGabor Juhos <juhosg@freemail.hu>
Wed, 13 Dec 2017 20:56:03 +0000 (21:56 +0100)
committerJohn Crispin <john@phrozen.org>
Fri, 15 Dec 2017 22:57:09 +0000 (23:57 +0100)
commitc13b4ef2c8a796fb1d1fb95e2ab5185a69479b22
tree740a528ddc8d4ea6c2aff81dbf8f078f6aa5e1f0
parenta9940ca2d7afb4f287c9799ab17d292e83cc03df
kernel: fix compiler warning in mtdsplit_minor.c under 4.4

When mtdsplit_minor.c is compiled under Linux 4.4, the compiler
drops the following warning:

    CC      drivers/mtd/mtdsplit/mtdsplit_minor.o
  drivers/mtd/mtdsplit/mtdsplit_minor.c:106:14: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types]
    .parse_fn = mtdsplit_parse_minor,
                ^
  drivers/mtd/mtdsplit/mtdsplit_minor.c:106:14: note: (near initialization for 'mtdsplit_minor_parser.parse_fn')

The second parameter of the parser function must not have a 'const'
qualifier in 4.4. The 001-mtdsplit_backport.patch removes the qualifier
from other partition parsers. Update it to handle mtdsplit_minor.c as
well.

Signed-off-by: Gabor Juhos <juhosg@freemail.hu>
target/linux/generic/pending-4.4/001-mtdsplit_backport.patch