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

From: Michael Miller
Date: Wed Jun 27 2012 - 11:44:18 EST


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/