mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
7eaa5e3d6c
PD#SWPL-67677 Problem: porting cpuinfo driver Solution: porting cpuinfo driver Verify: s4d Change-Id: I2e137208d4ded6143d288c1ea9f1bf481e84f019 Signed-off-by: wanwei.jiang <wanwei.jiang@amlogic.com>
13 lines
253 B
C
13 lines
253 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __CPU_INFO_H_
|
|
#define __CPU_INFO_H_
|
|
|
|
#define CHIPID_LEN 16
|
|
void cpuinfo_get_chipid(unsigned char *cid, unsigned int size);
|
|
|
|
#endif
|