mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
19 lines
352 B
C
19 lines
352 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
/*
|
||
|
* Copyright (C) 2019 Socionext Inc.
|
||
|
*/
|
||
|
|
||
|
#ifndef __UNIPHIER_BASE_ADDRESS_H
|
||
|
#define __UNIPHIER_BASE_ADDRESS_H
|
||
|
|
||
|
#ifdef CONFIG_ARCH_UNIPHIER_V8_MULTI
|
||
|
int uniphier_base_address_init(void);
|
||
|
#else
|
||
|
static inline int uniphier_base_address_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __UNIPHIER_BASE_ADDRESS_H */
|