mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
macloader: Add even more OUIs
* OUI types verified by comparing dump of CIS against VID table in kernel source * Added: 84:38:38, fc:db:b3 Change-Id: I2909d03be8cf7227ce008e981106705866571898
This commit is contained in:
parent
3c2325f13b
commit
b21592339a
1 changed files with 4 additions and 2 deletions
|
@ -177,7 +177,8 @@ int main() {
|
|||
strncasecmp(mac_addr_half, "60:21:c0", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "88:30:8a", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "f0:27:65", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "fc:c2:de", 9) == 0) {
|
||||
strncasecmp(mac_addr_half, "fc:c2:de", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "fc:db:b3", 9) == 0) {
|
||||
type = MURATA;
|
||||
}
|
||||
|
||||
|
@ -192,7 +193,8 @@ int main() {
|
|||
}
|
||||
|
||||
/* semco3rd */
|
||||
if (strncasecmp(mac_addr_half, "c0:bd:d1", 9) == 0 ||
|
||||
if (strncasecmp(mac_addr_half, "84:38:38", 9) == 0 ||
|
||||
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 ||
|
||||
|
|
Loading…
Reference in a new issue