PATCH: illegal->invalid for dmasound

From: Alan Cox (alan@lxorguk.ukuu.org.uk)
Date: Fri Jul 18 2003 - 09:29:35 EST


diff -u --new-file --recursive --exclude-from /usr/src/exclude linux-2.6.0-test1/sound/oss/dmasound/dmasound_core.c linux-2.6.0-test1-ac2/sound/oss/dmasound/dmasound_core.c
--- linux-2.6.0-test1/sound/oss/dmasound/dmasound_core.c 2003-07-14 14:11:57.000000000 +0100
+++ linux-2.6.0-test1-ac2/sound/oss/dmasound/dmasound_core.c 2003-07-15 18:01:30.000000000 +0100
@@ -1660,13 +1660,13 @@
 #ifdef HAS_RECORD
         case 5:
                 if ((ints[5] < 0) || (ints[5] > MAX_CATCH_RADIUS))
- printk("dmasound_setup: illegal catch radius, using default = %d\n", catchRadius);
+ printk("dmasound_setup: invalid catch radius, using default = %d\n", catchRadius);
                 else
                         catchRadius = ints[5];
                 /* fall through */
         case 4:
                 if (ints[4] < MIN_BUFFERS)
- printk("dmasound_setup: illegal number of read buffers, using default = %d\n",
+ printk("dmasound_setup: invalid number of read buffers, using default = %d\n",
                                  numReadBufs);
                 else
                         numReadBufs = ints[4];
@@ -1675,21 +1675,21 @@
                 if ((size = ints[3]) < 256) /* check for small buffer specs */
                         size <<= 10 ;
                 if (size < MIN_BUFSIZE || size > MAX_BUFSIZE)
- printk("dmasound_setup: illegal read buffer size, using default = %d\n", readBufSize);
+ printk("dmasound_setup: invalid read buffer size, using default = %d\n", readBufSize);
                 else
                         readBufSize = size;
                 /* fall through */
 #else
         case 3:
                 if ((ints[3] < 0) || (ints[3] > MAX_CATCH_RADIUS))
- printk("dmasound_setup: illegal catch radius, using default = %d\n", catchRadius);
+ printk("dmasound_setup: invalid catch radius, using default = %d\n", catchRadius);
                 else
                         catchRadius = ints[3];
                 /* fall through */
 #endif
         case 2:
                 if (ints[1] < MIN_BUFFERS)
- printk("dmasound_setup: illegal number of buffers, using default = %d\n", numWriteBufs);
+ printk("dmasound_setup: invalid number of buffers, using default = %d\n", numWriteBufs);
                 else
                         numWriteBufs = ints[1];
                 /* fall through */
@@ -1697,13 +1697,13 @@
                 if ((size = ints[2]) < 256) /* check for small buffer specs */
                         size <<= 10 ;
                 if (size < MIN_BUFSIZE || size > MAX_BUFSIZE)
- printk("dmasound_setup: illegal write buffer size, using default = %d\n", writeBufSize);
+ printk("dmasound_setup: invalid write buffer size, using default = %d\n", writeBufSize);
                 else
                         writeBufSize = size;
         case 0:
                 break;
         default:
- printk("dmasound_setup: illegal number of arguments\n");
+ printk("dmasound_setup: invalid number of arguments\n");
                 return 0;
         }
         return 1;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Jul 23 2003 - 22:00:34 EST