diff options
| author | Jerome Forissier <[email protected]> | 2024-09-11 11:58:16 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-09-24 13:41:21 -0600 |
| commit | effe97d49c232f49989beee9d6ad91b3af4197eb (patch) | |
| tree | c1c60aaafdb79c2e5f282a22546fdbff5bcefa94 /board/siemens/corvus | |
| parent | 9aa7e531f6808579c9fa77b6407409da80a1e9ab (diff) | |
at91: rename mem_init() to at91_mem_init()
The AT91-based platforms have a mem_init() function declared in
arch/arm/mach-at91/include/mach/at91_common.h and implemented in various
places. In preparation of the introduction of the lwIP networking library
which also has a global mem_init() function, rename the AT91 one to
at91_mem_init().
Signed-off-by: Jerome Forissier <[email protected]>
Reviewed-by: Peter Robinson <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Reviewed-by: Hari Prasath Gujulan Elango <[email protected]>
Diffstat (limited to 'board/siemens/corvus')
| -rw-r--r-- | board/siemens/corvus/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/siemens/corvus/board.c b/board/siemens/corvus/board.c index 7d73d1f2b36..cd27fc1cc37 100644 --- a/board/siemens/corvus/board.c +++ b/board/siemens/corvus/board.c @@ -187,7 +187,7 @@ static void ddr2_conf(struct atmel_mpddrc_config *ddr2) 2 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET); } -void mem_init(void) +void at91_mem_init(void) { struct atmel_mpddrc_config ddr2; |
