diff options
author | Jaroslav Kysela <perex@perex.cz> | 2001-09-26 15:23:46 +0000 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2001-09-26 15:23:46 +0000 |
commit | 80dfd3befdf067aa7847ce7a0b7bb135b6f8ee1c (patch) | |
tree | d7f178575897f66a153ee76c455c95d974c52e20 /include/control.h | |
parent | 6d58be023628e584e33bac73d1c4e518f88940ec (diff) |
Cut&paste fixes
Diffstat (limited to 'include/control.h')
-rw-r--r-- | include/control.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/control.h b/include/control.h index 8f747b67..7e77b6cc 100644 --- a/include/control.h +++ b/include/control.h @@ -143,19 +143,19 @@ typedef enum _snd_ctl_event_type { #define SND_CTL_NAME_IEC958(expl,direction,what) "IEC958 " expl SND_CTL_NAME_##direction SND_CTL_NAME_IEC958_##what /** Mask for the major Power State identifier */ -#define SNDRV_CTL_POWER_MASK 0xff00 +#define SND_CTL_POWER_MASK 0xff00 /** ACPI/PCI Power State D0 */ -#define SNDRV_CTL_POWER_D0 0x0000 +#define SND_CTL_POWER_D0 0x0000 /** ACPI/PCI Power State D1 */ -#define SNDRV_CTL_POWER_D1 0x0100 +#define SND_CTL_POWER_D1 0x0100 /** ACPI/PCI Power State D2 */ -#define SNDRV_CTL_POWER_D2 0x0200 +#define SND_CTL_POWER_D2 0x0200 /** ACPI/PCI Power State D3 */ -#define SNDRV_CTL_POWER_D3 0x0300 +#define SND_CTL_POWER_D3 0x0300 /** ACPI/PCI Power State D3hot */ -#define SNDRV_CTL_POWER_D3hot (SNDRV_CTL_POWER_D3|0x0000) +#define SND_CTL_POWER_D3hot (SND_CTL_POWER_D3|0x0000) /** ACPI/PCI Power State D3cold */ -#define SNDRV_CTL_POWER_D3cold (SNDRV_CTL_POWER_D3|0x0001) +#define SND_CTL_POWER_D3cold (SND_CTL_POWER_D3|0x0001) /** CTL type */ typedef enum _snd_ctl_type { |