Re: [patch] remove unnessesary casts from drivers/mtd/maps/nettel.c and kill two warnings

From: Greg Ungerer (gerg_at_snapgear.com)
Date: 01/05/05

  • Next message: Roland Dreier: "Re: [7/7] LEON SPARC V8 processor support for linux-2.6.10"
    Date:	Wed, 05 Jan 2005 10:26:39 +1000
    To: Jesper Juhl <juhl-lkml@dif.dk>
    
    

    Hi Jesper,

    Sorry for the slow response, I have been out on vacation the
    last couple of weeks :-)

    Jesper Juhl wrote:
    > I took a look at the cause for these warnings in the 2.6.10 kernel,
    >
    > drivers/mtd/maps/nettel.c:361: warning: assignment makes pointer from integer without a cast
    > drivers/mtd/maps/nettel.c:395: warning: assignment makes pointer from integer without a cast
    >
    > and as far as I can see the casts in there (to unsigned long and back to
    > void*) are completely unnessesary ('virt' in 'struct map_info' is a void
    > __iomem *), and getting rid of those casts buys us a warning free build.
    >
    > Are there any reasons not to apply the patch below?
    > Unfortunately I don't have hardware to test this patch, so it has been
    > compile tested only.

    Looks good to me. I have applied it to my working tree.
    Do you want me to send it to Linus?

    Thanks
    Greg

    > Please keep me on CC since I'm not subscribed to linux-mtd.
    >
    >
    > Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk>
    >
    > diff -up linux-2.6.10-orig/drivers/mtd/maps/nettel.c linux-2.6.10/drivers/mtd/maps/nettel.c
    > --- linux-2.6.10-orig/drivers/mtd/maps/nettel.c 2004-12-24 22:34:27.000000000 +0100
    > +++ linux-2.6.10/drivers/mtd/maps/nettel.c 2004-12-26 22:00:07.000000000 +0100
    > @@ -332,8 +332,8 @@ int __init nettel_init(void)
    >
    > /* Destroy useless AMD MTD mapping */
    > amd_mtd = NULL;
    > - iounmap((void *) nettel_amd_map.virt);
    > - nettel_amd_map.virt = (unsigned long) NULL;
    > + iounmap(nettel_amd_map.virt);
    > + nettel_amd_map.virt = NULL;
    > #else
    > /* Only AMD flash supported */
    > return(-ENXIO);
    > @@ -357,8 +357,7 @@ int __init nettel_init(void)
    > /* Probe for the the size of the first Intel flash */
    > nettel_intel_map.size = maxsize;
    > nettel_intel_map.phys = intel0addr;
    > - nettel_intel_map.virt = (unsigned long)
    > - ioremap_nocache(intel0addr, maxsize);
    > + nettel_intel_map.virt = ioremap_nocache(intel0addr, maxsize);
    > if (!nettel_intel_map.virt) {
    > printk("SNAPGEAR: failed to ioremap() ROMCS1\n");
    > return(-EIO);
    > @@ -366,8 +365,8 @@ int __init nettel_init(void)
    > simple_map_init(&nettel_intel_map);
    >
    > intel_mtd = do_map_probe("cfi_probe", &nettel_intel_map);
    > - if (! intel_mtd) {
    > - iounmap((void *) nettel_intel_map.virt);
    > + if (!intel_mtd) {
    > + iounmap(nettel_intel_map.virt);
    > return(-ENXIO);
    > }
    >
    > @@ -388,11 +387,10 @@ int __init nettel_init(void)
    > /* Delete the old map and probe again to do both chips */
    > map_destroy(intel_mtd);
    > intel_mtd = NULL;
    > - iounmap((void *) nettel_intel_map.virt);
    > + iounmap(nettel_intel_map.virt);
    >
    > nettel_intel_map.size = maxsize;
    > - nettel_intel_map.virt = (unsigned long)
    > - ioremap_nocache(intel0addr, maxsize);
    > + nettel_intel_map.virt = ioremap_nocache(intel0addr, maxsize);
    > if (!nettel_intel_map.virt) {
    > printk("SNAPGEAR: failed to ioremap() ROMCS1/2\n");
    > return(-EIO);
    > @@ -480,7 +478,7 @@ void __exit nettel_cleanup(void)
    > map_destroy(intel_mtd);
    > }
    > if (nettel_intel_map.virt) {
    > - iounmap((void *)nettel_intel_map.virt);
    > + iounmap(nettel_intel_map.virt);
    > nettel_intel_map.virt = 0;
    > }
    > #endif
    >
    >
    >
    >

    -- 
    ------------------------------------------------------------------------
    Greg Ungerer  --  Chief Software Dude       EMAIL:     gerg@snapgear.com
    SnapGear -- a CyberGuard Company            PHONE:       +61 7 3435 2888
    825 Stanley St,                             FAX:         +61 7 3891 3630
    Woolloongabba, QLD, 4102, Australia         WEB: http://www.SnapGear.com
    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at  http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at  http://www.tux.org/lkml/
    

  • Next message: Roland Dreier: "Re: [7/7] LEON SPARC V8 processor support for linux-2.6.10"

    Relevant Pages

    • Re: test of good_bytes in scsi_io_completion is always true (in drivers/scsi/scsi_lib.c)
      ... I never got any response to the mail below, ... the patch should make good sense... ... On Wed, 20 Apr 2005, Jesper Juhl wrote: ... send the line "unsubscribe linux-kernel" in ...
      (Linux-Kernel)
    • Re: 2.6.13-mm1
      ... Jesper Juhl wrote: ... > I'm wondering if it would be too much trouble to have a mm-drops list ... why did you drop my patch?". ... send the line "unsubscribe linux-kernel" in ...
      (Linux-Kernel)
    • Re: KVM & mouse wheel
      ... > Jesper Juhl wrote: ... Only the patch I sent helps me. ... No it is not - Synaptics with a track-point on a passthrough port will have ... send the line "unsubscribe linux-kernel" in ...
      (Linux-Kernel)
    • Re: [PATCH 2.6] Altix serial driver
      ... > Pat is on vacation and said he wouldn't mind if I posted the latest version ... > of this patch. ... send the line "unsubscribe linux-kernel" in ...
      (Linux-Kernel)
    • Re: 2.6.12-rc3-mm2
      ... On May 01 2005, Jesper Juhl wrote: ... I applied the patch now and I'm recompiling the kernel right now. ... Homepage on freshmeat: http://freshmeat.net/projects/algorithms/ ... send the line "unsubscribe linux-kernel" in ...
      (Linux-Kernel)