mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
Added more MAC's for murata.
After finding some i9300 devices who's MAC addresses were missing from the list, i searched for all murata MAC's and thought it wise to add them. Change-Id: I9e0db81cf2b1809b37b1660a4763db82699dd452
This commit is contained in:
parent
5b41817b96
commit
2fccbdf3da
1 changed files with 21 additions and 8 deletions
|
@ -61,15 +61,28 @@ int main() {
|
|||
return -1;
|
||||
}
|
||||
|
||||
/* murata */
|
||||
if (strncasecmp(mac_addr_half, "00:37:6d", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "88:30:8a", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "20:02:af", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "5c:f8:a1", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "40:f3:08", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "f0:27:65", 9) == 0 ||
|
||||
/* murata
|
||||
ref: http://hwaddress.com/?q=ACT */
|
||||
if (strncasecmp(mac_addr_half, "00:0e:6d", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "00:13:e0", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "00:21:e8", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "00:26:e8", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "00:37:6d", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "00:60:57", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "04:46:65", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "10:5f:06", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "10:a5:D0", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "1c:99:4c", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "60:21:c0", 9) == 0) {
|
||||
strncasecmp(mac_addr_half, "14:7d:c5", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "20:02:af", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "40:f3:08", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "44:a7:cf", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "5c:da:d4", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "5c:f8:a1", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "78:4B:87", 9) == 0 ||
|
||||
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) {
|
||||
type = MURATA;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue