snd_ps3.c (d392da5207352f09030e95d9ea335a4225667ec0) snd_ps3.c (9380f2af16940d1a65cb522d6a5876de65c28e7d)
1/*
2 * Audio support for PS3
3 * Copyright (C) 2007 Sony Computer Entertainment Inc.
4 * All rights reserved.
5 * Copyright 2006, 2007 Sony Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License

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

46/*
47 * global
48 */
49static struct snd_ps3_card_info the_card;
50
51static int snd_ps3_start_delay = CONFIG_SND_PS3_DEFAULT_START_DELAY;
52
53module_param_named(start_delay, snd_ps3_start_delay, uint, 0644);
1/*
2 * Audio support for PS3
3 * Copyright (C) 2007 Sony Computer Entertainment Inc.
4 * All rights reserved.
5 * Copyright 2006, 2007 Sony Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License

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

46/*
47 * global
48 */
49static struct snd_ps3_card_info the_card;
50
51static int snd_ps3_start_delay = CONFIG_SND_PS3_DEFAULT_START_DELAY;
52
53module_param_named(start_delay, snd_ps3_start_delay, uint, 0644);
54MODULE_PARM_DESC(start_delay, "time to insert silent data in milisec");
54MODULE_PARM_DESC(start_delay, "time to insert silent data in ms");
55
56static int index = SNDRV_DEFAULT_IDX1;
57static char *id = SNDRV_DEFAULT_STR1;
58
59module_param(index, int, 0444);
60MODULE_PARM_DESC(index, "Index value for PS3 soundchip.");
61module_param(id, charp, 0444);
62MODULE_PARM_DESC(id, "ID string for PS3 soundchip.");

--- 1097 unchanged lines hidden ---
55
56static int index = SNDRV_DEFAULT_IDX1;
57static char *id = SNDRV_DEFAULT_STR1;
58
59module_param(index, int, 0444);
60MODULE_PARM_DESC(index, "Index value for PS3 soundchip.");
61module_param(id, charp, 0444);
62MODULE_PARM_DESC(id, "ID string for PS3 soundchip.");

--- 1097 unchanged lines hidden ---