korg1212.c (b7dd2b349a9fa9e4347780c2bbb41e51484b5bb5) korg1212.c (7e0af29d6f3964bec3d72c6caeb87a603e660fdf)
1/*
2 * Driver for the Korg 1212 IO PCI card
3 *
4 * Copyright (c) 2001 Haroldo Gamal <gamal@alternex.com.br>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

--- 402 unchanged lines hidden (view full) ---

411 int dsp_is_loaded;
412 int dsp_stop_is_processed;
413
414};
415
416MODULE_DESCRIPTION("korg1212");
417MODULE_LICENSE("GPL");
418MODULE_SUPPORTED_DEVICE("{{KORG,korg1212}}");
1/*
2 * Driver for the Korg 1212 IO PCI card
3 *
4 * Copyright (c) 2001 Haroldo Gamal <gamal@alternex.com.br>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or

--- 402 unchanged lines hidden (view full) ---

411 int dsp_is_loaded;
412 int dsp_stop_is_processed;
413
414};
415
416MODULE_DESCRIPTION("korg1212");
417MODULE_LICENSE("GPL");
418MODULE_SUPPORTED_DEVICE("{{KORG,korg1212}}");
419#ifndef CONFIG_SND_KORG1212_FIRMWARE_IN_KERNEL
420MODULE_FIRMWARE("korg/k1212.dsp");
421#endif
419
420static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
421static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
422static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
423
424module_param_array(index, int, NULL, 0444);
425MODULE_PARM_DESC(index, "Index value for Korg 1212 soundcard.");
426module_param_array(id, charp, NULL, 0444);

--- 2076 unchanged lines hidden ---
422
423static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
424static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
425static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */
426
427module_param_array(index, int, NULL, 0444);
428MODULE_PARM_DESC(index, "Index value for Korg 1212 soundcard.");
429module_param_array(id, charp, NULL, 0444);

--- 2076 unchanged lines hidden ---