mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
macloader: Add additional OUIs
* Fix c0:bd:d1 while we are at it * All OUI types verified by comparing dump of CIS against VID table in kernel source Change-Id: I7858d8c03a176b9b37798bf0112f4b460ff2c9de
This commit is contained in:
parent
5a2cc4eed5
commit
d4ee359c8d
1 changed files with 4 additions and 2 deletions
|
@ -192,14 +192,16 @@ int main() {
|
|||
}
|
||||
|
||||
/* semco3rd */
|
||||
if (strncasecmp(mac_addr_half, "ec:1f:72", 9) == 0 ||
|
||||
if (strncasecmp(mac_addr_half, "c0:bd:d1", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "e8:50:8b", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "ec:1f:72", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "f0:25:b7", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "f4:09:d8", 9) == 0) {
|
||||
type = SEMCO3RD;
|
||||
}
|
||||
|
||||
/* semco */
|
||||
if (strncasecmp(mac_addr_half, "51:f6:6b", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "c0:bd:d1", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "ec:9b:f3", 9) == 0) {
|
||||
type = SEMCO;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue