diff mbox

[U-Boot,3/4] samsung: fix mkorigenspl for darwin

Message ID 1455661771-52559-4-git-send-email-andreas.devel@googlemail.com
State Accepted
Commit 2e33df807c4177c2674bc79e95a3678e5fa0dc78
Delegated to: Tom Rini
Headers show

Commit Message

Andreas Bießmann Feb. 16, 2016, 10:29 p.m. UTC
Compiling the mkorigenspl tool on darwin complains about undefined ulong. Fix
this by using the unified way.

Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
---

 board/samsung/origen/tools/mkorigenspl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini Feb. 25, 2016, 3:24 p.m. UTC | #1
On Tue, Feb 16, 2016 at 11:29:30PM +0100, Andreas Bießmann wrote:

> Compiling the mkorigenspl tool on darwin complains about undefined ulong. Fix
> this by using the unified way.
> 
> Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/board/samsung/origen/tools/mkorigenspl.c b/board/samsung/origen/tools/mkorigenspl.c
index 8b0c3ac..7b5d93b 100644
--- a/board/samsung/origen/tools/mkorigenspl.c
+++ b/board/samsung/origen/tools/mkorigenspl.c
@@ -83,8 +83,8 @@  int main(int argc, char **argv)
 	for (i = 0; i < IMG_SIZE - SPL_HEADER_SIZE; i++)
 		checksum += buffer[i+16];
 
-	*(ulong *)buffer ^= 0x1f;
-	*(ulong *)(buffer+4) ^= checksum;
+	*(unsigned long *)buffer ^= 0x1f;
+	*(unsigned long *)(buffer+4) ^= checksum;
 
 	for (i = 1; i < SPL_HEADER_SIZE; i++)
 		buffer[i] ^= buffer[i-1];