diff options
| author | Andre Heider <[email protected]> | 2018-02-15 07:40:10 +0100 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2018-03-31 16:00:03 +0800 |
| commit | 33222c8a2cef36d0651d85100d9e0eadbe73884c (patch) | |
| tree | 997602d4f9c8da9a92139e3e1bdd6bf42173a3bc | |
| parent | 1e656ad08c92c7b9db86bcc16eeb64fe5679f7c9 (diff) | |
cmd: cbfs: fix reading the end_of_rom pointer for 64bit archs
The cast breaks the pointer on 64bit archs, so lets get rid of it.
Signed-off-by: Andre Heider <[email protected]>
Reviewed-by: Alexander Graf <[email protected]>
| -rw-r--r-- | cmd/cbfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/cbfs.c b/cmd/cbfs.c index 799ba01fcc8..736f8c4527d 100644 --- a/cmd/cbfs.c +++ b/cmd/cbfs.c @@ -22,7 +22,7 @@ static int do_cbfs_init(cmd_tbl_t *cmdtp, int flag, int argc, return 0; } if (argc == 2) { - end_of_rom = (int)simple_strtoul(argv[1], &ep, 16); + end_of_rom = simple_strtoul(argv[1], &ep, 16); if (*ep) { puts("\n** Invalid end of ROM **\n"); return 1; |
