[PATCH] noinitramfs: correct initcall return type

2006-12-18 Thread Randy Dunlap
From: Randy Dunlap <[EMAIL PROTECTED]>

Use expected function return type to fix warning.
init/noinitramfs.c:42: warning: initialization from incompatible pointer type

Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
---
 init/noinitramfs.c |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.20-rc1-mm1.orig/init/noinitramfs.c
+++ linux-2.6.20-rc1-mm1/init/noinitramfs.c
@@ -29,7 +29,7 @@
 /*
  * Create a simple rootfs that is similar to the default initramfs
  */
-static void __init default_rootfs(void)
+static int __init default_rootfs(void)
 {
int mkdir_err = sys_mkdir("/dev", 0755);
int err = sys_mknod((const char __user *) "/dev/console",
@@ -38,5 +38,6 @@ static void __init default_rootfs(void)
if (err == -EROFS)
printk("Warning: Failed to create a rootfs\n");
mkdir_err = sys_mkdir("/root", 0700);
+   return 0;
 }
 rootfs_initcall(default_rootfs);


---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] noinitramfs: correct initcall return type

2006-12-18 Thread Randy Dunlap
From: Randy Dunlap [EMAIL PROTECTED]

Use expected function return type to fix warning.
init/noinitramfs.c:42: warning: initialization from incompatible pointer type

Signed-off-by: Randy Dunlap [EMAIL PROTECTED]
---
 init/noinitramfs.c |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- linux-2.6.20-rc1-mm1.orig/init/noinitramfs.c
+++ linux-2.6.20-rc1-mm1/init/noinitramfs.c
@@ -29,7 +29,7 @@
 /*
  * Create a simple rootfs that is similar to the default initramfs
  */
-static void __init default_rootfs(void)
+static int __init default_rootfs(void)
 {
int mkdir_err = sys_mkdir(/dev, 0755);
int err = sys_mknod((const char __user *) /dev/console,
@@ -38,5 +38,6 @@ static void __init default_rootfs(void)
if (err == -EROFS)
printk(Warning: Failed to create a rootfs\n);
mkdir_err = sys_mkdir(/root, 0700);
+   return 0;
 }
 rootfs_initcall(default_rootfs);


---
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/