HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6442
-gerrit
commit bb0493eb2f4b98836cf5856727f9eda3e5ce028a Author: Elyes HAOUAS ehaouas@noos.fr Date: Fri Aug 1 13:26:25 2014 +0200
mainboard 'hda_verb.h': Add missing header guards
Change-Id: I904b45bcb34e358d23daebbfc75c419c5d2983c4 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/mainboard/asus/m2n-e/hda_verb.h | 5 +++++ src/mainboard/dmp/vortex86ex/hda_verb.h | 5 +++++ src/mainboard/getac/p470/hda_verb.h | 5 +++++ src/mainboard/google/bolt/hda_verb.h | 5 +++++ src/mainboard/google/butterfly/hda_verb.h | 5 ++++- src/mainboard/google/falco/hda_verb.h | 5 +++++ src/mainboard/google/link/hda_verb.h | 5 +++++ src/mainboard/google/parrot/hda_verb.h | 5 +++++ src/mainboard/google/peppy/hda_verb.h | 5 +++++ src/mainboard/google/slippy/hda_verb.h | 5 +++++ src/mainboard/google/stout/hda_verb.h | 5 +++++ src/mainboard/intel/baskingridge/hda_verb.h | 5 +++++ src/mainboard/intel/cougar_canyon2/hda_verb.h | 5 +++++ src/mainboard/intel/emeraldlake2/hda_verb.h | 5 +++++ src/mainboard/intel/wtm2/hda_verb.h | 5 +++++ src/mainboard/iwave/iWRainbowG6/hda_verb.h | 5 +++++ src/mainboard/kontron/ktqm77/hda_verb.h | 6 ++++++ src/mainboard/lenovo/t520/hda_verb.h | 4 ++++ src/mainboard/lenovo/t530/hda_verb.h | 4 ++++ src/mainboard/lenovo/x201/hda_verb.h | 5 +++++ src/mainboard/lenovo/x230/hda_verb.h | 4 ++++ src/mainboard/nvidia/l1_2pvv/hda_verb.h | 5 +++++ src/mainboard/packardbell/ms2290/hda_verb.h | 5 +++++ src/mainboard/roda/rk9/hda_verb.h | 5 +++++ src/mainboard/samsung/lumpy/hda_verb.h | 5 +++++ src/mainboard/samsung/stumpy/hda_verb.h | 5 +++++ 26 files changed, 127 insertions(+), 1 deletion(-)
diff --git a/src/mainboard/asus/m2n-e/hda_verb.h b/src/mainboard/asus/m2n-e/hda_verb.h index ec288ba..6d9ed7e 100644 --- a/src/mainboard/asus/m2n-e/hda_verb.h +++ b/src/mainboard/asus/m2n-e/hda_verb.h @@ -24,6 +24,9 @@ * http://www.analog.com/static/imported-files/data_sheets/AD1988A_1988B.pdf */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x11d4198b, /* Codec Vendor / Device ID: Analog Devices AD1988B */ @@ -120,3 +123,5 @@ static const u32 mainboard_cim_verb_data[] = {
extern const u32 *cim_verb_data; extern u32 cim_verb_data_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/dmp/vortex86ex/hda_verb.h b/src/mainboard/dmp/vortex86ex/hda_verb.h index 0556315..91018f6 100644 --- a/src/mainboard/dmp/vortex86ex/hda_verb.h +++ b/src/mainboard/dmp/vortex86ex/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0262, // Codec Vendor / Device ID: Realtek ALC262 @@ -105,3 +108,5 @@ static const u32 mainboard_cim_verb_data[] = {
extern const u32 *cim_verb_data; extern u32 cim_verb_data_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/getac/p470/hda_verb.h b/src/mainboard/getac/p470/hda_verb.h index b7578cc..6b6daba 100644 --- a/src/mainboard/getac/p470/hda_verb.h +++ b/src/mainboard/getac/p470/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0262, // Codec Vendor / Device ID: Realtek ALC262 @@ -106,3 +109,5 @@ static const u32 mainboard_cim_verb_data[] = {
extern const u32 *cim_verb_data; extern u32 cim_verb_data_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/bolt/hda_verb.h b/src/mainboard/google/bolt/hda_verb.h index f27480d..a45511c 100644 --- a/src/mainboard/google/bolt/hda_verb.h +++ b/src/mainboard/google/bolt/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0283, // Codec Vendor / Device ID: Realtek ALC283 @@ -92,3 +95,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x02171f03, // connector, left panel
}; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/butterfly/hda_verb.h b/src/mainboard/google/butterfly/hda_verb.h index 89a81fe..0c01749 100644 --- a/src/mainboard/google/butterfly/hda_verb.h +++ b/src/mainboard/google/butterfly/hda_verb.h @@ -23,7 +23,8 @@ * Revision ID : 0x100303 */
- +#ifndef HDA_VERB_H +#define HDA_VERB_H static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x111D76E5, // Codec Vendor / Device ID: IDT 92HD99 @@ -262,3 +263,5 @@ static const u32 mainboard_pc_beep_verbs[] = {
static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/falco/hda_verb.h b/src/mainboard/google/falco/hda_verb.h index f27480d..a45511c 100644 --- a/src/mainboard/google/falco/hda_verb.h +++ b/src/mainboard/google/falco/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0283, // Codec Vendor / Device ID: Realtek ALC283 @@ -92,3 +95,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x02171f03, // connector, left panel
}; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/link/hda_verb.h b/src/mainboard/google/link/hda_verb.h index ed18d63..f190434 100644 --- a/src/mainboard/google/link/hda_verb.h +++ b/src/mainboard/google/link/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x11020011, // Codec Vendor / Device ID: Creative CA0132 @@ -179,3 +182,5 @@ static const u32 mainboard_pc_beep_verbs[] = { }; static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/parrot/hda_verb.h b/src/mainboard/google/parrot/hda_verb.h index ca68ad3..6756daf 100644 --- a/src/mainboard/google/parrot/hda_verb.h +++ b/src/mainboard/google/parrot/hda_verb.h @@ -32,6 +32,9 @@ * HDMI PatherPoint */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0269, // Codec Vendor / Device ID: Realtek ALC269 @@ -167,3 +170,5 @@ static const u32 mainboard_pc_beep_verbs[] = {
static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/peppy/hda_verb.h b/src/mainboard/google/peppy/hda_verb.h index d3a63bf..149d333 100644 --- a/src/mainboard/google/peppy/hda_verb.h +++ b/src/mainboard/google/peppy/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0283, // Codec Vendor / Device ID: Realtek ALC283 @@ -97,3 +100,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x02171f03, // connector, left panel
}; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/slippy/hda_verb.h b/src/mainboard/google/slippy/hda_verb.h index f27480d..a45511c 100644 --- a/src/mainboard/google/slippy/hda_verb.h +++ b/src/mainboard/google/slippy/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0283, // Codec Vendor / Device ID: Realtek ALC283 @@ -92,3 +95,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x02171f03, // connector, left panel
}; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/google/stout/hda_verb.h b/src/mainboard/google/stout/hda_verb.h index 08fc10c..5310633 100644 --- a/src/mainboard/google/stout/hda_verb.h +++ b/src/mainboard/google/stout/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0269, // Codec Vendor / Device ID: Realtek @@ -137,3 +140,5 @@ static const u32 mainboard_pc_beep_verbs[] = { }; static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/intel/baskingridge/hda_verb.h b/src/mainboard/intel/baskingridge/hda_verb.h index 52e5a3d..c91e578 100644 --- a/src/mainboard/intel/baskingridge/hda_verb.h +++ b/src/mainboard/intel/baskingridge/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10134210, // Codec Vendor / Device ID: Cirrus Logic CS4210 @@ -96,3 +99,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30771e56, 0x30771f18 }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/intel/cougar_canyon2/hda_verb.h b/src/mainboard/intel/cougar_canyon2/hda_verb.h index f8e83b4..14dea57 100644 --- a/src/mainboard/intel/cougar_canyon2/hda_verb.h +++ b/src/mainboard/intel/cougar_canyon2/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x80862805, // Codec Vendor / Device ID: Intel CougarPoint HDMI @@ -47,3 +50,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30771e56, 0x30771f18 }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/intel/emeraldlake2/hda_verb.h b/src/mainboard/intel/emeraldlake2/hda_verb.h index 52e5a3d..c91e578 100644 --- a/src/mainboard/intel/emeraldlake2/hda_verb.h +++ b/src/mainboard/intel/emeraldlake2/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10134210, // Codec Vendor / Device ID: Cirrus Logic CS4210 @@ -96,3 +99,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30771e56, 0x30771f18 }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/intel/wtm2/hda_verb.h b/src/mainboard/intel/wtm2/hda_verb.h index cb33add..c39b613 100644 --- a/src/mainboard/intel/wtm2/hda_verb.h +++ b/src/mainboard/intel/wtm2/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10134210, // Codec Vendor / Device ID: Cirrus Logic CS4210 @@ -96,3 +99,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30771e56, 0x30771f18 }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/iwave/iWRainbowG6/hda_verb.h b/src/mainboard/iwave/iWRainbowG6/hda_verb.h index 80ed21d..f440e41 100644 --- a/src/mainboard/iwave/iWRainbowG6/hda_verb.h +++ b/src/mainboard/iwave/iWRainbowG6/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x111d76d5, // Codec Vendor / Device ID: IDT 92HD81 @@ -92,3 +95,5 @@ static u32 mainboard_cim_verb_data[] = {
extern const u32 *cim_verb_data; extern u32 cim_verb_data_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/kontron/ktqm77/hda_verb.h b/src/mainboard/kontron/ktqm77/hda_verb.h index 53b3fc9..f96999d 100644 --- a/src/mainboard/kontron/ktqm77/hda_verb.h +++ b/src/mainboard/kontron/ktqm77/hda_verb.h @@ -24,6 +24,10 @@ * Port-Con. Location Def.-Dev. Con.-Type Color Misc Def.-Aso. Seq * 31..30 29..24 23..20 19..16 15..12 11..00 07..04 03..00 */ + +#ifndef HDA_VERB_H +#define HDA_VERB_H + #define PIN_CFG(pin, val) \ (pin << 20) | ( 0x71c << 8) | (val & 0xff), \ (pin << 20) | ( 0x71d << 8) | ((val >> 8) & 0xff), \ @@ -140,3 +144,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30771e56, 0x30771f18 }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/lenovo/t520/hda_verb.h b/src/mainboard/lenovo/t520/hda_verb.h index 7d5e75a..e51b02f 100644 --- a/src/mainboard/lenovo/t520/hda_verb.h +++ b/src/mainboard/lenovo/t520/hda_verb.h @@ -24,6 +24,8 @@ * Revision ID : 0x100303 */
+#ifndef HDA_VERB_H +#define HDA_VERB_H
static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ @@ -313,3 +315,5 @@ static const u32 mainboard_pc_beep_verbs[] = {
static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/lenovo/t530/hda_verb.h b/src/mainboard/lenovo/t530/hda_verb.h index cc280a1..3545c0a 100644 --- a/src/mainboard/lenovo/t530/hda_verb.h +++ b/src/mainboard/lenovo/t530/hda_verb.h @@ -24,6 +24,8 @@ * Revision ID : 0x100303 */
+#ifndef HDA_VERB_H +#define HDA_VERB_H
static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ @@ -313,3 +315,5 @@ static const u32 mainboard_pc_beep_verbs[] = {
static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/lenovo/x201/hda_verb.h b/src/mainboard/lenovo/x201/hda_verb.h index d5a8e7c..539d6fb 100644 --- a/src/mainboard/lenovo/x201/hda_verb.h +++ b/src/mainboard/lenovo/x201/hda_verb.h @@ -18,6 +18,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x14F15069, /* Codec Vendor / Device ID: Conexant CX20585 */ @@ -118,3 +121,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30671E56, 0x30671F58, }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/lenovo/x230/hda_verb.h b/src/mainboard/lenovo/x230/hda_verb.h index cc280a1..3545c0a 100644 --- a/src/mainboard/lenovo/x230/hda_verb.h +++ b/src/mainboard/lenovo/x230/hda_verb.h @@ -24,6 +24,8 @@ * Revision ID : 0x100303 */
+#ifndef HDA_VERB_H +#define HDA_VERB_H
static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ @@ -313,3 +315,5 @@ static const u32 mainboard_pc_beep_verbs[] = {
static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/nvidia/l1_2pvv/hda_verb.h b/src/mainboard/nvidia/l1_2pvv/hda_verb.h index 763840b..9a80526 100644 --- a/src/mainboard/nvidia/l1_2pvv/hda_verb.h +++ b/src/mainboard/nvidia/l1_2pvv/hda_verb.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0880, // Codec Vendor / Device ID: Realtek ALC880 @@ -106,3 +109,5 @@ static u32 mainboard_cim_verb_data[] = {
extern u32 *cim_verb_data; extern u32 cim_verb_data_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/packardbell/ms2290/hda_verb.h b/src/mainboard/packardbell/ms2290/hda_verb.h index 1e3ccc4..5a14636 100644 --- a/src/mainboard/packardbell/ms2290/hda_verb.h +++ b/src/mainboard/packardbell/ms2290/hda_verb.h @@ -18,6 +18,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10ec0272, /* Codec Vendor / Device ID: Realtek ALC272X */ @@ -88,3 +91,5 @@ static const u32 mainboard_cim_verb_data[] = { 0x30671E56, 0x30671F58, }; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/roda/rk9/hda_verb.h b/src/mainboard/roda/rk9/hda_verb.h index f99d097..0b14012 100644 --- a/src/mainboard/roda/rk9/hda_verb.h +++ b/src/mainboard/roda/rk9/hda_verb.h @@ -18,6 +18,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + #define PIN_CFG(pin, val) \ (pin << 20) | ( 0x71c << 8) | (val & 0xff), \ (pin << 20) | ( 0x71d << 8) | ((val >> 8) & 0xff), \ @@ -72,3 +75,5 @@ static const u32 mainboard_pc_beep_verbs[] = { }; extern const u32 * pc_beep_verbs; extern u32 pc_beep_verbs_size; + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/samsung/lumpy/hda_verb.h b/src/mainboard/samsung/lumpy/hda_verb.h index dfadf55..9f1a036 100644 --- a/src/mainboard/samsung/lumpy/hda_verb.h +++ b/src/mainboard/samsung/lumpy/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10134210, // Codec Vendor / Device ID: Realtek ALC262 @@ -79,3 +82,5 @@ static const u32 mainboard_pc_beep_verbs[] = { }; static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */ diff --git a/src/mainboard/samsung/stumpy/hda_verb.h b/src/mainboard/samsung/stumpy/hda_verb.h index b263fbe..f13a519 100644 --- a/src/mainboard/samsung/stumpy/hda_verb.h +++ b/src/mainboard/samsung/stumpy/hda_verb.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
+#ifndef HDA_VERB_H +#define HDA_VERB_H + static const u32 mainboard_cim_verb_data[] = { /* coreboot specific header */ 0x10134210, // Codec Vendor / Device ID: Cirrus Logic CS4210 @@ -106,3 +109,5 @@ static const u32 mainboard_pc_beep_verbs[] = { }; static const u32 mainboard_pc_beep_verbs_size = ARRAY_SIZE(mainboard_pc_beep_verbs); + +#endif /* HDA_VERB_H */