diff mbox series

fan: add cooling_device# to error messages

Message ID 1523643494-28593-1-git-send-email-alex.hung@canonical.com
State Accepted
Headers show
Series fan: add cooling_device# to error messages | expand

Commit Message

Alex Hung April 13, 2018, 6:18 p.m. UTC
Signed-off-by: Alex Hung <alex.hung@canonical.com>
---
 src/acpi/fan/fan.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Comments

Colin Ian King April 13, 2018, 7:10 p.m. UTC | #1
On 13/04/18 19:18, Alex Hung wrote:
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>  src/acpi/fan/fan.c | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/src/acpi/fan/fan.c b/src/acpi/fan/fan.c
> index f558935..f6e9399 100644
> --- a/src/acpi/fan/fan.c
> +++ b/src/acpi/fan/fan.c
> @@ -148,13 +148,16 @@ static int fan_test1(fwts_framework *fw)
>  		fan_info *info = fwts_list_data(fan_info *, item);
>  		if (info->type == NULL)
>  			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanType",
> -				"Fan present but has no fan type present.");
> +				"Fan %s present but has no fan type present.",
> +				info->name);
>  		if (info->max_state == -1)
>  			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanMaxState",
> -				"Fan present but has no max_state present.");
> +				"Fan %s present but has no max_state present.",
> +				info->name);
>  		if (info->cur_state == -1)
>  			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanCurState",
> -				"Fan present but has no cur_state present.");
> +				"Fan %s present but has no cur_state present.",
> +				info->name);
>  
>  		if (info->type &&
>  		    (info->max_state >= 0) && (info->cur_state >= 0))
> 

Acked-by: Colin Ian King <colin.king@canonical.com>
Ivan Hu April 25, 2018, 8:54 a.m. UTC | #2
On 04/14/2018 02:18 AM, Alex Hung wrote:
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>   src/acpi/fan/fan.c | 9 ++++++---
>   1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/src/acpi/fan/fan.c b/src/acpi/fan/fan.c
> index f558935..f6e9399 100644
> --- a/src/acpi/fan/fan.c
> +++ b/src/acpi/fan/fan.c
> @@ -148,13 +148,16 @@ static int fan_test1(fwts_framework *fw)
>   		fan_info *info = fwts_list_data(fan_info *, item);
>   		if (info->type == NULL)
>   			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanType",
> -				"Fan present but has no fan type present.");
> +				"Fan %s present but has no fan type present.",
> +				info->name);
>   		if (info->max_state == -1)
>   			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanMaxState",
> -				"Fan present but has no max_state present.");
> +				"Fan %s present but has no max_state present.",
> +				info->name);
>   		if (info->cur_state == -1)
>   			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanCurState",
> -				"Fan present but has no cur_state present.");
> +				"Fan %s present but has no cur_state present.",
> +				info->name);
>   
>   		if (info->type &&
>   		    (info->max_state >= 0) && (info->cur_state >= 0))
> 

Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff mbox series

Patch

diff --git a/src/acpi/fan/fan.c b/src/acpi/fan/fan.c
index f558935..f6e9399 100644
--- a/src/acpi/fan/fan.c
+++ b/src/acpi/fan/fan.c
@@ -148,13 +148,16 @@  static int fan_test1(fwts_framework *fw)
 		fan_info *info = fwts_list_data(fan_info *, item);
 		if (info->type == NULL)
 			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanType",
-				"Fan present but has no fan type present.");
+				"Fan %s present but has no fan type present.",
+				info->name);
 		if (info->max_state == -1)
 			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanMaxState",
-				"Fan present but has no max_state present.");
+				"Fan %s present but has no max_state present.",
+				info->name);
 		if (info->cur_state == -1)
 			fwts_failed(fw, LOG_LEVEL_MEDIUM, "NoFanCurState",
-				"Fan present but has no cur_state present.");
+				"Fan %s present but has no cur_state present.",
+				info->name);
 
 		if (info->type &&
 		    (info->max_state >= 0) && (info->cur_state >= 0))