You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] Remove MODULE_PARM
MODULE_PARM was actually breaking: recent gcc version optimize them out as unused. It's time to replace the last users, which are generally in the most unloved drivers anyway. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c721bccece
commit
8d3b33f67f
+1
-1
@@ -100,7 +100,7 @@
|
||||
|
||||
/* Boot options */
|
||||
static int vra = 0; // 0 = no VRA, 1 = use VRA if codec supports it
|
||||
MODULE_PARM(vra, "i");
|
||||
module_param(vra, bool, 0);
|
||||
MODULE_PARM_DESC(vra, "if 1 use VRA if codec supports it");
|
||||
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
* 0 = no VRA, 1 = use VRA if codec supports it
|
||||
*/
|
||||
static int vra = 1;
|
||||
MODULE_PARM(vra, "i");
|
||||
module_param(vra, bool, 0);
|
||||
MODULE_PARM_DESC(vra, "if 1 use VRA if codec supports it");
|
||||
|
||||
static struct au1550_state {
|
||||
|
||||
@@ -195,18 +195,18 @@
|
||||
*/
|
||||
|
||||
int dmasound_catchRadius = 0;
|
||||
MODULE_PARM(dmasound_catchRadius, "i");
|
||||
module_param(dmasound_catchRadius, int, 0);
|
||||
|
||||
static unsigned int numWriteBufs = DEFAULT_N_BUFFERS;
|
||||
MODULE_PARM(numWriteBufs, "i");
|
||||
module_param(numWriteBufs, int, 0);
|
||||
static unsigned int writeBufSize = DEFAULT_BUFF_SIZE ; /* in bytes */
|
||||
MODULE_PARM(writeBufSize, "i");
|
||||
module_param(writeBufSize, int, 0);
|
||||
|
||||
#ifdef HAS_RECORD
|
||||
static unsigned int numReadBufs = DEFAULT_N_BUFFERS;
|
||||
MODULE_PARM(numReadBufs, "i");
|
||||
module_param(numReadBufs, int, 0);
|
||||
static unsigned int readBufSize = DEFAULT_BUFF_SIZE; /* in bytes */
|
||||
MODULE_PARM(readBufSize, "i");
|
||||
module_param(readBufSize, int, 0);
|
||||
#endif
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
+2
-2
@@ -1968,9 +1968,9 @@ static int i2s_fmt[NR_DEVICE];
|
||||
|
||||
static unsigned int devindex;
|
||||
|
||||
MODULE_PARM(spdif, "1-" __MODULE_STRING(NR_DEVICE) "i");
|
||||
module_param_array(spdif, int, NULL, 0);
|
||||
MODULE_PARM_DESC(spdif, "if 1 the S/PDIF digital output is enabled");
|
||||
MODULE_PARM(i2s_fmt, "1-" __MODULE_STRING(NR_DEVICE) "i");
|
||||
module_param_array(i2s_fmt, int, NULL, 0);
|
||||
MODULE_PARM_DESC(i2s_fmt, "the format of I2S");
|
||||
|
||||
MODULE_AUTHOR("Monta Vista Software, stevel@mvista.com");
|
||||
|
||||
@@ -154,8 +154,8 @@ static void start_adc(struct cs4297a_state *s);
|
||||
#if CSDEBUG
|
||||
static unsigned long cs_debuglevel = 4; // levels range from 1-9
|
||||
static unsigned long cs_debugmask = CS_INIT /*| CS_IOCTL*/;
|
||||
MODULE_PARM(cs_debuglevel, "i");
|
||||
MODULE_PARM(cs_debugmask, "i");
|
||||
module_param(cs_debuglevel, int, 0);
|
||||
module_param(cs_debugmask, int, 0);
|
||||
#endif
|
||||
#define CS_TRUE 1
|
||||
#define CS_FALSE 0
|
||||
|
||||
@@ -2028,8 +2028,8 @@ __setup("waveartist=", setup_waveartist);
|
||||
#endif
|
||||
|
||||
MODULE_DESCRIPTION("Rockwell WaveArtist RWA-010 sound driver");
|
||||
MODULE_PARM(io, "i"); /* IO base */
|
||||
MODULE_PARM(irq, "i"); /* IRQ */
|
||||
MODULE_PARM(dma, "i"); /* DMA */
|
||||
MODULE_PARM(dma2, "i"); /* DMA2 */
|
||||
module_param(io, int, 0); /* IO base */
|
||||
module_param(irq, int, 0); /* IRQ */
|
||||
module_param(dma, int, 0); /* DMA */
|
||||
module_param(dma2, int, 0); /* DMA2 */
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
Reference in New Issue
Block a user