[PATCH] block/partitions/acorn.c: Changed string pointer declaration to array declaration for fewer asm statements

From: Michael Miller
Date: Fri Jul 06 2012 - 03:11:32 EST


Per the KernelJanitors page, this fix will remove 2 - 3 asm calls when declaring a string.

Signed-off-by: Michael Miller <commnerd@xxxxxxxxx>

---
block/partitions/acorn.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/partitions/acorn.c b/block/partitions/acorn.c
index fbeb697..bf5847e 100644
--- a/block/partitions/acorn.c
+++ b/block/partitions/acorn.c
@@ -168,7 +168,7 @@ int adfspart_check_CUMANA(struct parsed_partitions *state)
unsigned int start_blk = 0;
Sector sect;
unsigned char *data;
- char *name = "CUMANA/ADFS";
+ char name[] = "CUMANA/ADFS";
int first = 1;
int slot = 1;

--
1.7.2.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/