From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Fri, 26 Mar 2021 20:18:22 -0700 Subject: [PATCH 17/34] cbfs: Drop unnecessary cast in file_cbfs_fill_cache() In-Reply-To: <20210315173656.17.I199737f1a193fd768bb28bbee8847992f346edbe@changeid> References: <20210315173656.17.I199737f1a193fd768bb28bbee8847992f346edbe@changeid> <20210315050034.1934660-1-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The results of malloc() are a void * and so this cast is unnecessary. Drop it. Signed-off-by: Simon Glass --- fs/cbfs/cbfs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Applied to u-boot-dm/next, thanks!