From 49e7ee8adc60884f26e2c29cc95fe0b0f845ff7c Mon Sep 17 00:00:00 2001 From: richardg867 Date: Wed, 11 Oct 2023 20:54:06 -0300 Subject: [PATCH] snd_sb: Naming consistency on the new cards --- src/sound/snd_sb.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index cc3fc825d..fde2e98ba 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -3861,7 +3861,7 @@ const device_t sb_16_device = { }; const device_t sb_vibra16s_onboard_device = { - .name = "Sound Blaster Vibra 16S (On-Board)", + .name = "Sound Blaster ViBRA 16S (On-Board)", .internal_name = "sb_vibra16s_onboard", .flags = DEVICE_ISA | DEVICE_AT, .local = FM_YMF289B, @@ -3875,7 +3875,7 @@ const device_t sb_vibra16s_onboard_device = { }; const device_t sb_vibra16s_device = { - .name = "Sound Blaster Vibra 16S", + .name = "Sound Blaster ViBRA 16S", .internal_name = "sb_vibra16s", .flags = DEVICE_ISA | DEVICE_AT, .local = FM_YMF289B, @@ -3889,7 +3889,7 @@ const device_t sb_vibra16s_device = { }; const device_t sb_vibra16xv_device = { - .name = "Sound Blaster Vibra 16XV", + .name = "Sound Blaster ViBRA 16XV", .internal_name = "sb_vibra16xv", .flags = DEVICE_ISA | DEVICE_AT, .local = 0, @@ -3903,7 +3903,7 @@ const device_t sb_vibra16xv_device = { }; const device_t sb_vibra16c_onboard_device = { - .name = "Sound Blaster Vibra 16C (On-Board)", + .name = "Sound Blaster ViBRA 16C (On-Board)", .internal_name = "sb_vibra16c_onboard", .flags = DEVICE_ISA | DEVICE_AT, .local = 1, @@ -3917,7 +3917,7 @@ const device_t sb_vibra16c_onboard_device = { }; const device_t sb_vibra16c_device = { - .name = "Sound Blaster Vibra 16C", + .name = "Sound Blaster ViBRA 16C", .internal_name = "sb_vibra16c", .flags = DEVICE_ISA | DEVICE_AT, .local = 1,