mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [patch 02/25]  drivers/char/epca.c MIN/MAX removal
@ 2004-09-01 20:55 janitor
  0 siblings, 0 replies; only message in thread
From: janitor @ 2004-09-01 20:55 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, janitor



Patch (against 2.6.7) removes unnecessary min/max macros and changes
calls to use kernel.h macros instead.

Feedback is always welcome
Michael

Signed-off-by: Maximilian Attems <janitor@sternwelten.at>



---

 linux-2.6.9-rc1-bk7-max/drivers/char/epca.c |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff -puN drivers/char/epca.c~min-max-char_epca drivers/char/epca.c
--- linux-2.6.9-rc1-bk7/drivers/char/epca.c~min-max-char_epca	2004-09-01 19:33:31.000000000 +0200
+++ linux-2.6.9-rc1-bk7-max/drivers/char/epca.c	2004-09-01 19:33:31.000000000 +0200
@@ -74,7 +74,6 @@
 #define DIGIINFOMAJOR       35  /* For Digi specific ioctl */ 
 
 
-#define MIN(a,b)	((a) < (b) ? (a) : (b))
 #define MAXCARDS 7
 #define epcaassert(x, msg)  if (!(x)) epca_error(__LINE__, msg)
 
@@ -826,7 +825,7 @@ static int pc_write(struct tty_struct * 
 			bytesAvailable will then take on this newly calculated value.
 		---------------------------------------------------------------------- */
 
-		bytesAvailable = MIN(dataLen, bytesAvailable);
+		bytesAvailable = min(dataLen, bytesAvailable);
 
 		/* First we read the data in from the file system into a temp buffer */
 
@@ -912,7 +911,7 @@ static int pc_write(struct tty_struct * 
 			space; reduce the amount of data to fit the space.
 	---------------------------------------------------------------------- */
 
-	bytesAvailable = MIN(remain, bytesAvailable);
+	bytesAvailable = min(remain, bytesAvailable);
 
 	txwinon(ch);
 	while (bytesAvailable > 0) 
@@ -923,7 +922,7 @@ static int pc_write(struct tty_struct * 
 			data copy fills to the end of card buffer.
 		------------------------------------------------------------------- */
 
-		dataLen = MIN(bytesAvailable, dataLen);
+		dataLen = min(bytesAvailable, dataLen);
 		memcpy(ch->txptr + head, buf, dataLen);
 		buf += dataLen;
 		head += dataLen;

_

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

only message in thread, other threads:[~2004-09-01 21:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-01 20:55 [patch 02/25] drivers/char/epca.c MIN/MAX removal janitor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®