Soby Mathew | b4c6df4 | 2022-11-09 11:13:29 +0000 | [diff] [blame] | 1 | /* |
2 | * SPDX-License-Identifier: BSD-3-Clause | ||||
3 | * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef CPUID_H | ||||
7 | #define CPUID_H | ||||
8 | |||||
9 | static inline unsigned int my_cpuid(void) | ||||
10 | { | ||||
11 | return 0UL; | ||||
12 | } | ||||
13 | |||||
14 | #endif /* CPUID_H */ |