#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/initval.h>
#include "pmac.h"
#include "awacs.h"
#include "burgundy.h"
Go to the source code of this file.
|
| MODULE_DESCRIPTION ("PowerMac") |
|
| MODULE_SUPPORTED_DEVICE ("{{Apple,PowerMac}}") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (index, int, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for "CHIP_NAME" soundchip.") |
|
| module_param (id, charp, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for "CHIP_NAME" soundchip.") |
|
| module_param (enable_beep, bool, 0444) |
|
| MODULE_PARM_DESC (enable_beep,"Enable beep using PCM.") |
|
#define SND_PMAC_DRIVER "snd_powermac" |
#define SND_PMAC_PM_OPS NULL |
MODULE_DESCRIPTION |
( |
"PowerMac" |
| ) |
|
module_param |
( |
id |
, |
|
|
charp |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
enable_beep |
, |
|
|
bool |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
index |
, |
|
|
"Index value for "CHIP_NAME" soundchip." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for "CHIP_NAME" soundchip." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable_beep |
, |
|
|
"Enable beep using PCM." |
|
|
) |
| |
MODULE_SUPPORTED_DEVICE |
( |
"{{Apple,PowerMac}}" |
| ) |
|