commit | 6ca4c38c884772bab7dd7a6c5d17c716b599a58f | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun May 24 17:38:19 2020 -0600 |
committer | Bin Meng <bmeng.cn@gmail.com> | Wed May 27 14:40:09 2020 +0800 |
tree | 88acdbe3e28706c5f5ae93f0759bfefa1201b0ce | |
parent | 51541003179ada0f2fe379e795f876a0fbabdcb2 [diff] |
cbfs: Use void * for the position pointers It doesn't make sense to use u8 * as the pointer type for accessing the CBFS since we do not access it as bytes, but via structures. Change it to void *, which allows us to avoid a cast. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>