mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
macloader: Decapitalize wisol MAC addresses
* These should be lowercase, otherwise detection will fail Change-Id: Ibdc446a8f9c58bc9b17b8e9c6cfd5f4894f7ecff Signed-off-by: Paul Keith <javelinanddart@aidenswann.com>
This commit is contained in:
parent
6d31bae512
commit
6e35157bd6
1 changed files with 2 additions and 2 deletions
|
@ -234,8 +234,8 @@ int main() {
|
|||
}
|
||||
|
||||
/* wisol */
|
||||
if (strncasecmp(mac_addr_half, "48:5A:3F", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "70:2C:1F", 9) == 0) {
|
||||
if (strncasecmp(mac_addr_half, "48:5a:3f", 9) == 0 ||
|
||||
strncasecmp(mac_addr_half, "70:2c:1f", 9) == 0) {
|
||||
type = WISOL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue