mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-19 17:14:40 +08:00
6aeb51c103
A number of functions are only called from the file they are defined in, so remove the extern declarations and make them local to those files. Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
18 lines
264 B
C
18 lines
264 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* OMAP2 CPU identification code
|
|
*
|
|
* Copyright (C) 2010 Kan-Ru Chen <kanru@0xlab.org>
|
|
*/
|
|
#ifndef OMAP2_ARCH_ID_H
|
|
#define OMAP2_ARCH_ID_H
|
|
|
|
struct omap_die_id {
|
|
u32 id_0;
|
|
u32 id_1;
|
|
u32 id_2;
|
|
u32 id_3;
|
|
};
|
|
|
|
#endif
|