linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [2.6 patch] fix aztcd.c compile warning
@ 2003-09-09 14:53 maximilian attems
  0 siblings, 0 replies; only message in thread
From: maximilian attems @ 2003-09-09 14:53 UTC (permalink / raw)
  To: linux-kernel; +Cc: kj, emoenke

this patch tries to fix the following compile warning:
-- snipp
drivers/cdrom/aztcd.c:379: warning: `pa_ok' defined but not used
--

with belows patch drivers/cdrom/aztcd.c compiles without warning
the patch also removes a comment section where pa_ok _was_ used
the warning shows off on each single compile statistics by cherry.
i hope this helps :)


a++ maks



--- linux-2.6.0-test5/drivers/cdrom/aztcd.c	Mon Sep  8 21:50:28 2003
+++ linux/drivers/cdrom/aztcd.c	Tue Sep  9 15:53:09 2003
@@ -373,21 +373,6 @@
 	} while (aztIndatum != AFL_OP_OK);
 }
 
-/* Wait for PA_OK = drive answers with AFL_PA_OK after receiving parameters*/
-# define PA_OK pa_ok()
-static void pa_ok(void)
-{
-	aztTimeOutCount = 0;
-	do {
-		aztIndatum = inb(DATA_PORT);
-		aztTimeOutCount++;
-		if (aztTimeOutCount >= AZT_TIMEOUT) {
-			printk("aztcd: Error Wait PA_OK\n");
-			break;
-		}
-	} while (aztIndatum != AFL_PA_OK);
-}
-
 /* Wait for STEN=Low = handshake signal 'AFL_.._OK available or command executed*/
 # define STEN_LOW  sten_low()
 static void sten_low(void)
@@ -2077,11 +2062,6 @@
 				return;
 			}
 
-/*	  if (aztSendCmd(ACMD_SET_MODE)) RETURN("azt_poll 3");
-	  outb(0x01, DATA_PORT);
-	  PA_OK;
-	  STEN_LOW;
-*/
 			if (aztSendCmd(ACMD_GET_STATUS))
 				RETURN("azt_poll 4");
 			STEN_LOW;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-09-09 14:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-09-09 14:53 [2.6 patch] fix aztcd.c compile warning maximilian attems

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).