--------------------- PatchSet 3123 Date: 2005/04/14 13:37:13 Author: tiwai Branch: HEAD Tag: (none) Log: Summary: Misc clean up Misc clean up: move the definitions of constants for pinctl to a single place. Members: pci/hda/hda_codec.h:1.5->1.6 Index: /sound/pci/hda/hda_codec.h diff -u /sound/pci/hda/hda_codec.h.old /sound/pci/hda/hda_codec.h --- /sound/pci/hda/hda_codec.h.old Wed Apr 13 06:37:50 2005 +++ /sound/pci/hda/hda_codec.h Thu Apr 14 05:37:13 2005 @@ -185,13 +185,6 @@ #define AC_PINCAP_VREF_GRD (1<<2) /* ground */ #define AC_PINCAP_VREF_80 (1<<4) /* 80% */ #define AC_PINCAP_VREF_100 (1<<5) /* 100% */ -/* Vref setting (used in pin ctl) */ -#define AC_PINCTL_VREF_HIZ (0) /* Hi-Z */ -#define AC_PINCTL_VREF_50 (1) /* 50% */ -#define AC_PINCTL_VREF_GRD (2) /* ground */ -#define AC_PINCTL_VREF_80 (4) /* 80% */ -#define AC_PINCTL_VREF_100 (5) /* 100% */ - /* Amplifier capabilities */ #define AC_AMPCAP_OFFSET (0x7f<<0) /* 0dB offset */ @@ -254,6 +247,11 @@ /* Pin widget control - 8bit */ #define AC_PINCTL_VREFEN (0x7<<0) +#define AC_PINCTL_VREF_HIZ 0 /* Hi-Z */ +#define AC_PINCTL_VREF_50 1 /* 50% */ +#define AC_PINCTL_VREF_GRD 2 /* ground */ +#define AC_PINCTL_VREF_80 4 /* 80% */ +#define AC_PINCTL_VREF_100 5 /* 100% */ #define AC_PINCTL_IN_EN (1<<5) #define AC_PINCTL_OUT_EN (1<<6) #define AC_PINCTL_HP_EN (1<<7)