diff options
| author | Ying-Chun Liu (PaulLiu) <[email protected]> | 2023-03-14 02:26:20 +0800 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2023-03-30 13:47:04 +0200 |
| commit | 9098facd215ba19a36df7f42c52f84038dc5de92 (patch) | |
| tree | 3d373eea4a448243875be806ed67d33e90a261cd | |
| parent | 4bdc3524d76eb9bc6e30b74f3dfe4a0ae5e5b1b6 (diff) | |
compulab: imx8mm-cl-iot-gate: Fix some function declarations in ddr.h
We have a few places here that the function declarations do not
match their prototypes, correct them.
Signed-off-by: Ying-Chun Liu (PaulLiu) <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: Stefano Babic <[email protected]>
Cc: Fabio Estevam <[email protected]>
Cc: NXP i.MX U-Boot Team <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reported-by: Tom Rini <[email protected]>
Reviewed-by: Fabio Estevam <[email protected]>
| -rw-r--r-- | board/compulab/imx8mm-cl-iot-gate/ddr/ddr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.h b/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.h index f7d4fdc1016..508b4a565c9 100644 --- a/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.h +++ b/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.h @@ -25,7 +25,7 @@ struct lpddr4_tcm_desc { u32 cl_eeprom_get_ddrinfo(void); u32 cl_eeprom_set_ddrinfo(u32 ddrinfo); -u32 cl_eeprom_get_subind(void); -u32 cl_eeprom_set_subind(u32 subind); +u8 cl_eeprom_get_subind(void); +u8 cl_eeprom_set_subind(u8 subind); u32 cl_eeprom_get_osize(void); #endif |
