All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] disk: part_efi: Fix parameters passed to is_gpt_valid().
@ 2011-11-17  7:04 Thierry Reding
  2011-11-17  7:56 ` Thierry Reding
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Thierry Reding @ 2011-11-17  7:04 UTC (permalink / raw)
  To: u-boot

Something apparently went wrong when the patch in commit deb5ca8 was
applied. Commit f75dd58 changed the type of gpt_head to be a pointer and
correctly adjusted the calls to is_gpt_valid(). But when deb5ca8 got
applied, the gpt_head was again reverted to &(gpt_head), which was the
state before deb5ca8.

This commit fixes the passing of gpt_head into is_gpt_valid().

Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
---
 disk/part_efi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/disk/part_efi.c b/disk/part_efi.c
index e7f2714..ddf80a7 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -130,7 +130,7 @@ void print_part_efi(block_dev_desc_t * dev_desc)
 	}
 	/* This function validates AND fills in the GPT header and PTE */
 	if (is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
-			 &(gpt_head), &gpt_pte) != 1) {
+			 gpt_head, &gpt_pte) != 1) {
 		printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
 		return;
 	}
@@ -169,7 +169,7 @@ int get_partition_info_efi(block_dev_desc_t * dev_desc, int part,
 
 	/* This function validates AND fills in the GPT header and PTE */
 	if (is_gpt_valid(dev_desc, GPT_PRIMARY_PARTITION_TABLE_LBA,
-			&(gpt_head), &gpt_pte) != 1) {
+			gpt_head, &gpt_pte) != 1) {
 		printf("%s: *** ERROR: Invalid GPT ***\n", __func__);
 		return -1;
 	}
-- 
1.7.7.3

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-11-17 18:33 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-17  7:04 [U-Boot] [PATCH] disk: part_efi: Fix parameters passed to is_gpt_valid() Thierry Reding
2011-11-17  7:56 ` Thierry Reding
2011-11-17 15:00   ` Stefano Babic
2011-11-17 15:07     ` Thierry Reding
2011-11-17 17:02       ` Tom Warren
2011-11-17 17:48         ` Doug Anderson
2011-11-17 18:33           ` Thierry Reding
2011-11-17 18:31       ` Detlev Zundel
2011-11-17 16:13 ` Stephen Warren
2011-11-17 16:32   ` Thierry Reding
2011-11-17 17:43 ` Premi, Sanjeev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.