Commit 369a0c85 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fix #warnings

Patch from "Randy.Dunlap" <rddunlap@osdl.org>

This fixes a few #warning's that gcc 2.96 complains about having
unmatched single-quote marks.  (warnings on #warnings)
parent 7857e0a1
......@@ -351,7 +351,7 @@ static void aha152x_release_cs(u_long arg)
DEBUG(0, "aha152x_release_cs(0x%p)\n", link);
#warning This doesn't protect you. You need some real fix for your races.
#warning This does not protect you. You need some real fix for your races.
#if 0
if (GET_USE_COUNT(driver_template.module) != 0) {
DEBUG(1, "aha152x_cs: release postponed, "
......
......@@ -314,7 +314,7 @@ static void fdomain_release(u_long arg)
DEBUG(0, "fdomain_release(0x%p)\n", link);
#warning This doesn't protect you. You need some real fix for your races.
#warning This does not protect you. You need some real fix for your races.
#if 0
if (GET_USE_COUNT(&__this_module) != 0) {
DEBUG(1, "fdomain_cs: release postponed, "
......
......@@ -330,7 +330,7 @@ static void qlogic_release(u_long arg)
DEBUG(0, "qlogic_release(0x%p)\n", link);
#warning This doesn't protect you. You need some real fix for your races.
#warning This does not protect you. You need some real fix for your races.
#if 0
if (GET_USE_COUNT(&__this_module) != 0) {
DEBUG(0, "qlogic_cs: release postponed, device still open\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment