12 lines
256 B
C
12 lines
256 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
#ifndef IDENTITY_H
|
||
|
#define IDENTITY_H
|
||
|
|
||
|
/* Motherboard Information */
|
||
|
extern const char mainboard_name[];
|
||
|
extern const char mainboard_vendor[];
|
||
|
extern const char mainboard_part_number[];
|
||
|
|
||
|
#endif /* IDENTITY_H */
|