macloader: Decapitalize wisol MAC addresses
* These should be lowercase, otherwise detection will fail
Change-Id: Ibdc446a8f9c58bc9b17b8e9c6cfd5f4894f7ecff
Signed-off-by: Paul Keith <javelinanddart@aidenswann.com>
diff --git a/macloader/macloader.c b/macloader/macloader.c
index 72b103c..e436900 100644
--- a/macloader/macloader.c
+++ b/macloader/macloader.c
@@ -234,8 +234,8 @@
}
/* 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;
}