]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/params.c
USB: Remove unneeded void * casts in core files
[linux-2.6-omap-h63xx.git] / kernel / params.c
index 9de637a5c8bc920df2875910d29aba8dc0b4e3bb..91aea7aa532e53940fc7c63367d6a9634249be95 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
-#include <linux/config.h>
 #include <linux/moduleparam.h>
 #include <linux/kernel.h>
 #include <linux/string.h>
@@ -31,7 +30,7 @@
 #define DEBUGP(fmt, a...)
 #endif
 
-static inline int dash2underscore(char c)
+static inline char dash2underscore(char c)
 {
        if (c == '-')
                return '_';