[PATCH] fix for ACPI compile warnings in 2.4.0prerelease

Rich Baum (baumr1@coral.indstate.edu)
Sun, 31 Dec 2000 22:16:25 -0500


--Message-Boundary-9043
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Mail message body

When I compile 2.4.0-prerelease with the 200012252 gcc
snapshot I get the following warnings:

make[3]: Entering directory `/usr/src/linux/drivers/acpi/hardware'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-
prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe -
mpreferred-stack-boundary=2 -march=k6 -I../include -D_LINUX -c -
o hwcpu32.o hwcpu32.c
hwcpu32.c:711:1: warning: no newline at end of file
make[3]: Leaving directory `/usr/src/linux/drivers/acpi/hardware'
make[3]: Entering directory `/usr/src/linux/drivers/acpi/namespace'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-
prototypes -O2 -fomit-frame-pointer -fno-strict-aliasing -pipe -
mpreferred-stack-boundary=2 -march=k6 -I../include -D_LINUX -c -
o nsxfobj.o nsxfobj.c
nsxfobj.c:697:1: warning: no newline at end of file
make[3]: Leaving directory `/usr/src/linux/drivers/acpi/namespace'

Attached is a patch that removes these warnings. Please consider
this patch for the final release.

Rich

--Message-Boundary-9043
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Text from file 'acpi.patch'

diff -urN linux/drivers/acpi/hardware/hwcpu32.c rb/drivers/acpi/hardware/hwcpu32.c
--- linux/drivers/acpi/hardware/hwcpu32.c Sun Dec 31 19:19:05 2000
+++ rb/drivers/acpi/hardware/hwcpu32.c Sun Dec 31 20:44:11 2000
@@ -708,4 +708,4 @@
return;
}

-
\ No newline at end of file
+
diff -urN linux/drivers/acpi/namespace/nsxfobj.c rb/drivers/acpi/namespace/nsxfobj.c
--- linux/drivers/acpi/namespace/nsxfobj.c Sun Dec 31 19:19:05 2000
+++ rb/drivers/acpi/namespace/nsxfobj.c Sun Dec 31 20:44:51 2000
@@ -694,4 +694,5 @@
acpi_cm_release_mutex (ACPI_MTX_NAMESPACE);

return (status);
-}
\ No newline at end of file
+}
+

--Message-Boundary-9043--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/