diff mbox

bios: bios32: ensure source fits into 80 columns

Message ID 1330681360-16543-1-git-send-email-colin.king@canonical.com
State Accepted
Headers show

Commit Message

Colin Ian King March 2, 2012, 9:42 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 src/bios/bios32/bios32.c |   43 ++++++++++++++++++++++++++++++-------------
 1 files changed, 30 insertions(+), 13 deletions(-)

Comments

Keng-Yu Lin March 5, 2012, 8:02 a.m. UTC | #1
On Fri, Mar 2, 2012 at 5:42 PM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  src/bios/bios32/bios32.c |   43 ++++++++++++++++++++++++++++++-------------
>  1 files changed, 30 insertions(+), 13 deletions(-)
>
> diff --git a/src/bios/bios32/bios32.c b/src/bios/bios32/bios32.c
> index 5fae0e6..e2f2cd6 100644
> --- a/src/bios/bios32/bios32.c
> +++ b/src/bios/bios32/bios32.c
> @@ -36,7 +36,9 @@ typedef struct {
>  static int bios32_init(fwts_framework *fw)
>  {
>        if (fw->firmware_type != FWTS_FIRMWARE_BIOS) {
> -               fwts_log_info(fw, "Machine is not using traditional BIOS firmware, skipping test.");
> +               fwts_log_info(fw,
> +                       "Machine is not using traditional BIOS firmware, "
> +                       "skipping test.");
>                return FWTS_SKIP;
>        }
>
> @@ -66,9 +68,12 @@ static int bios32_test1(fwts_framework *fw)
>                    (*(mem+i+1) == '3') &&
>                    (*(mem+i+2) == '2') &&
>                    (*(mem+i+3) == '_')) {
> -                       fwts_bios32_service_directory *bios32 = (fwts_bios32_service_directory*)(mem+i);
> +                       fwts_bios32_service_directory *bios32 =
> +                               (fwts_bios32_service_directory*)(mem+i);
>
> -                       fwts_log_info(fw, "Found BIOS32 Service Directory at 0x%8.8x", BIOS32_SD_REGION_START+i);
> +                       fwts_log_info(fw,
> +                               "Found BIOS32 Service Directory at 0x%8.8x",
> +                               BIOS32_SD_REGION_START+i);
>                        fwts_log_info_verbatum(fw, "  Signature  : %4.4s",
>                                bios32->signature);
>                        fwts_log_info_verbatum(fw, "  Entry Point: 0x%8.8x",
> @@ -84,30 +89,40 @@ static int bios32_test1(fwts_framework *fw)
>                        if (bios32->entry_point >= 0x100000) {
>                                fwts_failed(fw, LOG_LEVEL_HIGH,
>                                        "BIOS32SrvDirEntryPointHighMem",
> -                                       "Service Directory Entry Point 0x%8.8x is in high memory and cannot be used by the kernel.",
> +                                       "Service Directory Entry Point 0x%8.8x "
> +                                       "is in high memory and cannot be used "
> +                                       "by the kernel.",
>                                        bios32->entry_point);
>                                fwts_tag_failed(fw, FWTS_TAG_BIOS);
>                        } else
> -                               fwts_passed(fw, "Service Directory Entry Point 0x%8.8x is not in high memory.",
> +                               fwts_passed(fw, "Service Directory Entry Point "
> +                                       "0x%8.8x is not in high memory.",
>                                        bios32->entry_point);
>
>                        if (bios32->length != 1) {
>                                fwts_failed(fw, LOG_LEVEL_HIGH,
>                                        "BIOS32SrvDirEntryLength",
> -                                        "Service Directory Length is 0x%8.8x, expected 1 (1 x 16 bytes).",
> +                                       "Service Directory Length is 0x%8.8x, "
> +                                       "expected 1 (1 x 16 bytes).",
>                                        bios32->length);
>                                fwts_tag_failed(fw, FWTS_TAG_BIOS);
>                        } else
> -                               fwts_passed(fw, "Service Directory Length is 1 (1 x 16 bytes) as expected.");
> +                               fwts_passed(fw,
> +                                       "Service Directory Length is 1 "
> +                                       "(1 x 16 bytes) as expected.");
>
>                        if (bios32->revision_level != 0) {
>                                fwts_failed(fw, LOG_LEVEL_HIGH,
>                                        "BIOS32SrvDirRevision",
> -                                       "Service Directory Revision is 0x%2.2x, only version 0 is supported by the kernel.",
> +                                       "Service Directory Revision is 0x%2.2x,"
> +                                       " only version 0 is supported by the "
> +                                       "kernel.",
>                                        bios32->revision_level);
>                                fwts_tag_failed(fw, FWTS_TAG_BIOS);
>                        } else
> -                               fwts_passed(fw, "Service Directory Revision is 0x%2.2x and is supported by the kernel.",
> +                               fwts_passed(fw,
> +                                       "Service Directory Revision is 0x%2.2x "
> +                                       "and is supported by the kernel.",
>                                        bios32->revision_level);
>
>                        if (fwts_checksum(mem + i, 16) != 0) {
> @@ -116,7 +131,8 @@ static int bios32_test1(fwts_framework *fw)
>                                        "Service Directory checksum failed.");
>                                fwts_tag_failed(fw, FWTS_TAG_BIOS);
>                        } else
> -                               fwts_passed(fw, "Service Directory checksum passed.");
> +                               fwts_passed(fw,
> +                                       "Service Directory checksum passed.");
>                        found++;
>                }
>        }
> @@ -126,8 +142,8 @@ static int bios32_test1(fwts_framework *fw)
>        else if (found > 1) {
>                fwts_failed(fw, LOG_LEVEL_HIGH,
>                        "BIOS32MultipleSrvDirInstances",
> -                       "Found %d instances of BIOS32 Service Directory, there should only be 1.",
> -                       found);
> +                       "Found %d instances of BIOS32 Service Directory, "
> +                       "there should only be 1.", found);
>                fwts_tag_failed(fw, FWTS_TAG_BIOS);
>        }
>
> @@ -147,6 +163,7 @@ static fwts_framework_ops bios32_ops = {
>        .minor_tests = bios32_tests
>  };
>
> -FWTS_REGISTER(bios32, &bios32_ops, FWTS_TEST_ANYTIME, FWTS_BATCH | FWTS_ROOT_PRIV);
> +FWTS_REGISTER(bios32, &bios32_ops, FWTS_TEST_ANYTIME,
> +       FWTS_BATCH | FWTS_ROOT_PRIV);
>
>  #endif
> --
> 1.7.9
>
Acked-by: Keng-Yu Lin <kengyu@canonical.com>
Alex Hung March 7, 2012, 3:02 a.m. UTC | #2
On 03/02/2012 05:42 PM, Colin King wrote:
> From: Colin Ian King<colin.king@canonical.com>
>
> Signed-off-by: Colin Ian King<colin.king@canonical.com>
> ---
>   src/bios/bios32/bios32.c |   43 ++++++++++++++++++++++++++++++-------------
>   1 files changed, 30 insertions(+), 13 deletions(-)
>
> diff --git a/src/bios/bios32/bios32.c b/src/bios/bios32/bios32.c
> index 5fae0e6..e2f2cd6 100644
> --- a/src/bios/bios32/bios32.c
> +++ b/src/bios/bios32/bios32.c
> @@ -36,7 +36,9 @@ typedef struct {
>   static int bios32_init(fwts_framework *fw)
>   {
>   	if (fw->firmware_type != FWTS_FIRMWARE_BIOS) {
> -		fwts_log_info(fw, "Machine is not using traditional BIOS firmware, skipping test.");
> +		fwts_log_info(fw,
> +			"Machine is not using traditional BIOS firmware, "
> +			"skipping test.");
>   		return FWTS_SKIP;
>   	}
>
> @@ -66,9 +68,12 @@ static int bios32_test1(fwts_framework *fw)
>   		    (*(mem+i+1) == '3')&&
>   		(*(mem+i+2) == '2')&&
>   		(*(mem+i+3) == '_')) {
> -			fwts_bios32_service_directory *bios32 = (fwts_bios32_service_directory*)(mem+i);
> +			fwts_bios32_service_directory *bios32 =
> +				(fwts_bios32_service_directory*)(mem+i);
>
> -			fwts_log_info(fw, "Found BIOS32 Service Directory at 0x%8.8x", BIOS32_SD_REGION_START+i);
> +			fwts_log_info(fw,
> +				"Found BIOS32 Service Directory at 0x%8.8x",
> +				BIOS32_SD_REGION_START+i);
>   			fwts_log_info_verbatum(fw, "  Signature  : %4.4s",
>   				bios32->signature);
>   			fwts_log_info_verbatum(fw, "  Entry Point: 0x%8.8x",
> @@ -84,30 +89,40 @@ static int bios32_test1(fwts_framework *fw)
>   			if (bios32->entry_point>= 0x100000) {
>   				fwts_failed(fw, LOG_LEVEL_HIGH,
>   					"BIOS32SrvDirEntryPointHighMem",
> -					"Service Directory Entry Point 0x%8.8x is in high memory and cannot be used by the kernel.",
> +					"Service Directory Entry Point 0x%8.8x "
> +					"is in high memory and cannot be used "
> +					"by the kernel.",
>   					bios32->entry_point);
>   				fwts_tag_failed(fw, FWTS_TAG_BIOS);
>   			} else
> -				fwts_passed(fw, "Service Directory Entry Point 0x%8.8x is not in high memory.",
> +				fwts_passed(fw, "Service Directory Entry Point "
> +					"0x%8.8x is not in high memory.",
>   					bios32->entry_point);
>
>   			if (bios32->length != 1) {
>   				fwts_failed(fw, LOG_LEVEL_HIGH,
>   					"BIOS32SrvDirEntryLength",
> -					 "Service Directory Length is 0x%8.8x, expected 1 (1 x 16 bytes).",
> +					"Service Directory Length is 0x%8.8x, "
> +					"expected 1 (1 x 16 bytes).",
>   					bios32->length);
>   				fwts_tag_failed(fw, FWTS_TAG_BIOS);
>   			} else
> -				fwts_passed(fw, "Service Directory Length is 1 (1 x 16 bytes) as expected.");
> +				fwts_passed(fw,
> +					"Service Directory Length is 1 "
> +					"(1 x 16 bytes) as expected.");
>
>   			if (bios32->revision_level != 0) {
>   				fwts_failed(fw, LOG_LEVEL_HIGH,
>   					"BIOS32SrvDirRevision",
> -					"Service Directory Revision is 0x%2.2x, only version 0 is supported by the kernel.",
> +					"Service Directory Revision is 0x%2.2x,"
> +					" only version 0 is supported by the "
> +					"kernel.",
>   					bios32->revision_level);
>   				fwts_tag_failed(fw, FWTS_TAG_BIOS);
>   			} else
> -				fwts_passed(fw, "Service Directory Revision is 0x%2.2x and is supported by the kernel.",
> +				fwts_passed(fw,
> +					"Service Directory Revision is 0x%2.2x "
> +					"and is supported by the kernel.",
>   					bios32->revision_level);
>
>   			if (fwts_checksum(mem + i, 16) != 0) {
> @@ -116,7 +131,8 @@ static int bios32_test1(fwts_framework *fw)
>   					"Service Directory checksum failed.");
>   				fwts_tag_failed(fw, FWTS_TAG_BIOS);
>   			} else
> -				fwts_passed(fw, "Service Directory checksum passed.");
> +				fwts_passed(fw,
> +					"Service Directory checksum passed.");
>   			found++;
>   		}
>   	}
> @@ -126,8 +142,8 @@ static int bios32_test1(fwts_framework *fw)
>   	else if (found>  1) {
>   		fwts_failed(fw, LOG_LEVEL_HIGH,
>   			"BIOS32MultipleSrvDirInstances",
> -			"Found %d instances of BIOS32 Service Directory, there should only be 1.",
> -			found);
> +			"Found %d instances of BIOS32 Service Directory, "
> +			"there should only be 1.", found);
>   		fwts_tag_failed(fw, FWTS_TAG_BIOS);
>   	}
>
> @@ -147,6 +163,7 @@ static fwts_framework_ops bios32_ops = {
>   	.minor_tests = bios32_tests
>   };
>
> -FWTS_REGISTER(bios32,&bios32_ops, FWTS_TEST_ANYTIME, FWTS_BATCH | FWTS_ROOT_PRIV);
> +FWTS_REGISTER(bios32,&bios32_ops, FWTS_TEST_ANYTIME,
> +	FWTS_BATCH | FWTS_ROOT_PRIV);
>
>   #endif
Acked-by: Alex Hung <alex.hung@canonical.com>
diff mbox

Patch

diff --git a/src/bios/bios32/bios32.c b/src/bios/bios32/bios32.c
index 5fae0e6..e2f2cd6 100644
--- a/src/bios/bios32/bios32.c
+++ b/src/bios/bios32/bios32.c
@@ -36,7 +36,9 @@  typedef struct {
 static int bios32_init(fwts_framework *fw)
 {
 	if (fw->firmware_type != FWTS_FIRMWARE_BIOS) {
-		fwts_log_info(fw, "Machine is not using traditional BIOS firmware, skipping test.");
+		fwts_log_info(fw,
+			"Machine is not using traditional BIOS firmware, "
+			"skipping test.");
 		return FWTS_SKIP;
 	}
 
@@ -66,9 +68,12 @@  static int bios32_test1(fwts_framework *fw)
 		    (*(mem+i+1) == '3') &&
 		    (*(mem+i+2) == '2') &&
 		    (*(mem+i+3) == '_')) {
-			fwts_bios32_service_directory *bios32 = (fwts_bios32_service_directory*)(mem+i);
+			fwts_bios32_service_directory *bios32 =
+				(fwts_bios32_service_directory*)(mem+i);
 
-			fwts_log_info(fw, "Found BIOS32 Service Directory at 0x%8.8x", BIOS32_SD_REGION_START+i);
+			fwts_log_info(fw,
+				"Found BIOS32 Service Directory at 0x%8.8x",
+				BIOS32_SD_REGION_START+i);
 			fwts_log_info_verbatum(fw, "  Signature  : %4.4s", 
 				bios32->signature);
 			fwts_log_info_verbatum(fw, "  Entry Point: 0x%8.8x",
@@ -84,30 +89,40 @@  static int bios32_test1(fwts_framework *fw)
 			if (bios32->entry_point >= 0x100000) {
 				fwts_failed(fw, LOG_LEVEL_HIGH,
 					"BIOS32SrvDirEntryPointHighMem",
-					"Service Directory Entry Point 0x%8.8x is in high memory and cannot be used by the kernel.",
+					"Service Directory Entry Point 0x%8.8x "
+					"is in high memory and cannot be used "
+					"by the kernel.",
 					bios32->entry_point);
 				fwts_tag_failed(fw, FWTS_TAG_BIOS);
 			} else
-				fwts_passed(fw, "Service Directory Entry Point 0x%8.8x is not in high memory.",
+				fwts_passed(fw, "Service Directory Entry Point "
+					"0x%8.8x is not in high memory.",
 					bios32->entry_point);
 
 			if (bios32->length != 1) {
 				fwts_failed(fw, LOG_LEVEL_HIGH,
 					"BIOS32SrvDirEntryLength",
-					 "Service Directory Length is 0x%8.8x, expected 1 (1 x 16 bytes).",
+					"Service Directory Length is 0x%8.8x, "
+					"expected 1 (1 x 16 bytes).",
 					bios32->length);
 				fwts_tag_failed(fw, FWTS_TAG_BIOS);
 			} else
-				fwts_passed(fw, "Service Directory Length is 1 (1 x 16 bytes) as expected.");
+				fwts_passed(fw,
+					"Service Directory Length is 1 "
+					"(1 x 16 bytes) as expected.");
 
 			if (bios32->revision_level != 0) {
 				fwts_failed(fw, LOG_LEVEL_HIGH,
 					"BIOS32SrvDirRevision",
-					"Service Directory Revision is 0x%2.2x, only version 0 is supported by the kernel.",
+					"Service Directory Revision is 0x%2.2x,"
+					" only version 0 is supported by the "
+					"kernel.",
 					bios32->revision_level);
 				fwts_tag_failed(fw, FWTS_TAG_BIOS);
 			} else
-				fwts_passed(fw, "Service Directory Revision is 0x%2.2x and is supported by the kernel.",
+				fwts_passed(fw,
+					"Service Directory Revision is 0x%2.2x "
+					"and is supported by the kernel.",
 					bios32->revision_level);
 
 			if (fwts_checksum(mem + i, 16) != 0) {
@@ -116,7 +131,8 @@  static int bios32_test1(fwts_framework *fw)
 					"Service Directory checksum failed.");
 				fwts_tag_failed(fw, FWTS_TAG_BIOS);
 			} else
-				fwts_passed(fw, "Service Directory checksum passed.");
+				fwts_passed(fw,
+					"Service Directory checksum passed.");
 			found++;
 		}
 	}
@@ -126,8 +142,8 @@  static int bios32_test1(fwts_framework *fw)
 	else if (found > 1) {
 		fwts_failed(fw, LOG_LEVEL_HIGH,
 			"BIOS32MultipleSrvDirInstances", 
-			"Found %d instances of BIOS32 Service Directory, there should only be 1.",
-			found);
+			"Found %d instances of BIOS32 Service Directory, "
+			"there should only be 1.", found);
 		fwts_tag_failed(fw, FWTS_TAG_BIOS);
 	}
 
@@ -147,6 +163,7 @@  static fwts_framework_ops bios32_ops = {
 	.minor_tests = bios32_tests
 };
 
-FWTS_REGISTER(bios32, &bios32_ops, FWTS_TEST_ANYTIME, FWTS_BATCH | FWTS_ROOT_PRIV);
+FWTS_REGISTER(bios32, &bios32_ops, FWTS_TEST_ANYTIME,
+	FWTS_BATCH | FWTS_ROOT_PRIV);
 
 #endif