-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathacer_aspire1.c
33 lines (29 loc) · 1.64 KB
/
acer_aspire1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// SPDX-License-Identifier: BSD-3-Clause
/* Copyright (c) 2024 Nikita Travkin <[email protected]> */
#include <efi.h>
#include <device.h>
static EFI_GUID acer_aspire_1_hwids[] = {
{ 0x45d37dbe, 0x40fb, 0x57bd, { 0xa2, 0x57, 0x55, 0xf4, 0x22, 0xd4, 0xdc, 0x0a } },
{ 0x373bfde5, 0xffaa, 0x504c, { 0x84, 0xf3, 0xf8, 0xf5, 0x35, 0x7d, 0xfc, 0x29 } },
{ 0xe12521bf, 0x0ed8, 0x5406, { 0xaf, 0x87, 0xad, 0xad, 0x81, 0x2c, 0x57, 0xc5 } },
{ 0xfaa12ed4, 0xbd49, 0x5471, { 0x8f, 0x74, 0x75, 0xc2, 0x26, 0x7c, 0x3b, 0x46 } },
{ 0x965e3681, 0xde3b, 0x5e39, { 0xbb, 0x62, 0x7d, 0x49, 0x17, 0xd7, 0xe3, 0x6f } },
{ 0x82fe1869, 0x361c, 0x56b2, { 0xb8, 0x53, 0x63, 0x17, 0x47, 0xe6, 0x4a, 0xa7 } },
{ 0x7e15f49e, 0x04b4, 0x5d56, { 0xa5, 0x67, 0xe7, 0xa1, 0x5b, 0xa2, 0xac, 0xa1 } },
{ 0x7c107a7f, 0x2d77, 0x51aa, { 0xae, 0xf8, 0x8d, 0x77, 0x7e, 0x26, 0xff, 0xbc } },
{ 0x68b38fff, 0xaadc, 0x512c, { 0x93, 0x7b, 0x99, 0xd9, 0xc1, 0x3e, 0xb4, 0x84 } },
{ 0x260192d4, 0x06d4, 0x5124, { 0xab, 0x46, 0xba, 0x21, 0x0f, 0x4c, 0x14, 0xd7 } },
{ 0x175f000b, 0x3d05, 0x5c01, { 0xae, 0xdd, 0x81, 0x7b, 0x1a, 0x14, 0x1f, 0x93 } },
{ 0x24277a94, 0x7064, 0x500f, { 0x98, 0x54, 0x52, 0x64, 0xf2, 0x0c, 0xfa, 0x99 } },
{ 0x92dcc94d, 0x48f7, 0x5ee8, { 0xb9, 0xec, 0xa6, 0x39, 0x3f, 0xb7, 0xa4, 0x84 } },
{ 0xd234a917, 0xdf0b, 0x5453, { 0xa3, 0xd9, 0xf2, 0x7c, 0x06, 0x30, 0x73, 0x95 } },
{ 0x1e301734, 0x5d49, 0x5df4, { 0x9e, 0xd2, 0xaa, 0x1c, 0x0a, 0x9d, 0xdd, 0xda } },
{ }
};
static struct device acer_aspire_1_dev = {
.name = L"Acer Aspire 1",
.dtb = L"qcom\\sc7180-acer-aspire1.dtb",
.hwids = acer_aspire_1_hwids,
.dt_fixup = dt_set_default_mac,
};
DEVICE_DESC(acer_aspire_1_dev);