The patch titled Mismatching declarations of revision strings in HiSax has been added to the -mm tree. Its filename is mismatching-declarations-of-revision-strings-in-hisax.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: Mismatching declarations of revision strings in HiSax From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> The {l1,l2,l3,lli,tei}_revision strings in the HiSax driver are 'const', but have a mismatching declaration as 'extern char *' in config.c. Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/isdn/hisax/config.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff -puN drivers/isdn/hisax/config.c~mismatching-declarations-of-revision-strings-in-hisax drivers/isdn/hisax/config.c --- a/drivers/isdn/hisax/config.c~mismatching-declarations-of-revision-strings-in-hisax +++ a/drivers/isdn/hisax/config.c @@ -361,11 +361,11 @@ module_param_array(io1, int, NULL, 0); int nrcards; -extern char *l1_revision; -extern char *l2_revision; -extern char *l3_revision; -extern char *lli_revision; -extern char *tei_revision; +extern const char *l1_revision; +extern const char *l2_revision; +extern const char *l3_revision; +extern const char *lli_revision; +extern const char *tei_revision; char *HiSax_getrev(const char *revision) { _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are remove-slab_ctor_constructor.patch dont-force-uclinux-mtd-map-to-be-root-dev.patch use-mutex-instead-of-semaphore-in-the-mtd-st-m25pxx-driver.patch use-mutex-instead-of-semaphore-in-the-mtd-st-m25pxx-driver-build-fix.patch use-mutex-instead-of-semaphore-in-the-mtd-dataflash-driver.patch git-ubi.patch fix-incorrect-prototype-for-ipxrtr_route_packet.patch git-battery.patch ns16550a-restore-hs-settings-in-excr2-on-resume.patch add-lzo1x-compression-support-to-the-kernel.patch add-lzo1x-compression-support-to-the-kernel-fix.patch mismatching-declarations-of-revision-strings-in-hisax.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