From 4a65a62f85ece242588d9316bf624bbd12cd54f7 Mon Sep 17 00:00:00 2001 From: Jett Rink Date: Mon, 21 May 2018 15:56:28 -0600 Subject: ppc: making driver non-const We need to update the driver based on the runtime board id, so we need to remove the const attribute. BRANCH=none BUG=b:78896495,b:78021059 TEST=build all -j Change-Id: I5f751c33cf4ec68a38aeb8644170df4987c87d7b Signed-off-by: Jett Rink Reviewed-on: https://chromium-review.googlesource.com/1068030 Reviewed-by: Aseda Aboagye Reviewed-by: Furquan Shaikh --- include/usbc_ppc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/usbc_ppc.h') diff --git a/include/usbc_ppc.h b/include/usbc_ppc.h index 1995654536..e846a6ecca 100644 --- a/include/usbc_ppc.h +++ b/include/usbc_ppc.h @@ -123,8 +123,8 @@ struct ppc_config_t { const struct ppc_drv *drv; }; -extern const struct ppc_config_t ppc_chips[]; -extern const unsigned int ppc_cnt; +extern struct ppc_config_t ppc_chips[]; +extern unsigned int ppc_cnt; /** * Initializes the PPC for the specified port. -- cgit v1.2.1