The patch titled netport_con.c: fix build errors and warnings has been added to the -mm tree. Its filename is netport_conc-fix-build-errors-and-warnings.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: netport_con.c: fix build errors and warnings From: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Fix build broken by accaa24c492f1aa3b9c37226d868dc59c3007531: CC drivers/video/console/newport_con.o drivers/video/console/newport_con.c: In function 'newport_show_logo': drivers/video/console/newport_con.c:111: error: assignment of read-only location drivers/video/console/newport_con.c:111: warning: assignment makes integer from pointer without a cast drivers/video/console/newport_con.c:112: error: assignment of read-only location drivers/video/console/newport_con.c:112: warning: assignment makes integer from pointer without a cast Signed-off-by: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Cc: "Randy.Dunlap" <rdunlap@xxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/video/console/newport_con.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/video/console/newport_con.c~netport_conc-fix-build-errors-and-warnings drivers/video/console/newport_con.c --- a/drivers/video/console/newport_con.c~netport_conc-fix-build-errors-and-warnings +++ a/drivers/video/console/newport_con.c @@ -98,7 +98,7 @@ static inline void newport_init_cmap(voi } } -static struct linux_logo *newport_show_logo(void) +static const struct linux_logo *newport_show_logo(void) { #ifdef CONFIG_LOGO_SGI_CLUT224 const struct linux_logo *logo = fb_find_logo(8); @@ -108,8 +108,8 @@ static struct linux_logo *newport_show_l if (!logo) return NULL; - *clut = logo->clut; - *data = logo->data; + clut = logo->clut; + data = logo->data; for (i = 0; i < logo->clutsize; i++) { newport_bfwait(npregs); _ Patches currently in -mm which might be from ralf@xxxxxxxxxxxxxx are origin.patch clean-up-duplicate-includes-in-drivers-char.patch spelling-fix-weired-weird.patch remove-dma_cache_wbackinvwback_inv-functions.patch lk201-remove-obsolete-driver.patch fix-wrong-filename-reference-in-drivers-testingtxt.patch completely-remove-deprecated-irq-flags-sa_.patch compile-handle_percpu_irq-even-for-uniprocessor-kernels.patch break-elf_platform-and-stack-pointer-randomization-dependency.patch add-a-00-index-file-to-documentation-mips.patch netport_conc-fix-build-errors-and-warnings.patch drivers-pmc-msp71xx-gpio-char-driver.patch define-global-bit-macro.patch bitops-introduce-lock-ops.patch mips-fix-bitops.patch mips-lock-bitops.patch replace-__attribute_pure__-with-__pure.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html