On Wednesday 05 September 2007, Scott Wood wrote: > > void *cpm_dpram_addr(unsigned long offset) > { > - return (void *)(im_dprambase + offset); > + return (void __force *)(im_dprambase + offset); > } > EXPORT_SYMBOL(cpm_dpram_addr);
This does not look like a legitimate use of __force. I think it's better to leave the warning in place for cases like this, so that someone else can clean up the remaining users of this. In this particular case, it seems that the function should either be removed or changed to return an __iomem pointer so you get the warning in the mac-fcc driver using it. The rest of your patch looks great. Arnd <>< _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev