[PATCH 2/2] bios: hdaaudio: ensure source fits into 80 columns

Alex Hung alex.hung at canonical.com
Wed Mar 7 09:54:54 UTC 2012


On 03/02/2012 05:52 PM, Colin King wrote:
> From: Colin Ian King<colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King<colin.king at canonical.com>
> ---
>   src/bios/hdaaudio/hdaaudio.c |   15 +++++++++++----
>   1 files changed, 11 insertions(+), 4 deletions(-)
>
> diff --git a/src/bios/hdaaudio/hdaaudio.c b/src/bios/hdaaudio/hdaaudio.c
> index 7dc1823..1b6f88f 100644
> --- a/src/bios/hdaaudio/hdaaudio.c
> +++ b/src/bios/hdaaudio/hdaaudio.c
> @@ -71,7 +71,8 @@ static void hda_audio_dump_pins(fwts_framework *fw, const char *config,
>   			hda_audio_pin_setting *pin_setting =
>   				fwts_list_data(hda_audio_pin_setting *, item);
>
> -			fwts_log_info_verbatum(fw, "  0x%4.4hx 0x%8.8x", pin_setting->pin, pin_setting->setting);
> +			fwts_log_info_verbatum(fw, "  0x%4.4hx 0x%8.8x",
> +				pin_setting->pin, pin_setting->setting);
>   		}
>   	} else
>   		fwts_log_info(fw, "%s: None Defined.", config);
> @@ -131,10 +132,16 @@ static int hda_audio_check_pins(fwts_framework *fw, const char *path)
>   	}
>
>   	if (warn) {
> -		fwts_log_warning(fw, "BIOS pin configurations required software override to make HDA audio work correctly.");
> -		fwts_log_advice(fw, "The driver or user provided overrides should be corrected in BIOS firmware.");
> +		fwts_log_warning(fw,
> +			"BIOS pin configurations required software override "
> +			"to make HDA audio work correctly.");
> +		fwts_log_advice(fw,
> +			"The driver or user provided overrides should be "
> +			"corrected in BIOS firmware.");
>   	} else
> -		fwts_passed(fw, "Default BIOS pin configurations did not have software override.");
> +		fwts_passed(fw,
> +			"Default BIOS pin configurations did not have "
> +			"software override.");
>
>   	fwts_list_free_items(&user_pin_configs, free);
>   	fwts_list_free_items(&driver_pin_configs, free);
Acked-by: Alex Hung <alex.hung at canonical.com>




More information about the fwts-devel mailing list