From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Fri, 18 Apr 2014 19:27:06 +0200 Subject: [U-Boot] [PATCH] aes: make apply_cbc_chain_data non-static In-Reply-To: <1397838538-11696-1-git-send-email-swarren@wwwdotorg.org> References: <1397838538-11696-1-git-send-email-swarren@wwwdotorg.org> Message-ID: <201404181927.06206.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Friday, April 18, 2014 at 06:28:58 PM, Stephen Warren wrote: > From: Stephen Warren > > Tegra's crypto.c uses apply_cbc_chain_data() to sign the warm restart > code. This function was recently moved into the core aes.c and made > static, which prevents the Tegra code from compiling. Make it public > again to avoid the compile errors: > > arch/arm/cpu/tegra20-common/crypto.c: In function ?sign_object?: > arch/arm/cpu/tegra20-common/crypto.c:74:3: warning: implicit declaration of > function ?apply_cbc_chain_data? [-Wimplicit-function-declaration] > arch/arm/cpu/built-in.o: In function `sign_object': > .../arch/arm/cpu/tegra20-common/crypto.c:74: undefined reference to > `apply_cbc_chain_data' .../arch/arm/cpu/tegra20-common/crypto.c:78: > undefined reference to `apply_cbc_chain_data' > > Fixes: 6e7b9f4fa0ae ("aes: Move the AES-128-CBC encryption function to > common code") Signed-off-by: Stephen Warren Acked-by: Marek Vasut Best regards, Marek Vasut