generic: fix wrong PTR_ERR use in of net mac address ascii patch
[openwrt/staging/dedeckeh.git] / target / linux / generic / hack-5.15 / 601-of_net-add-mac-address-ascii-support.patch
index 83483751f8627009d5ea3fd621e6c8edf0c8f1e6..4ab05b4ea6f94920c7eaffe60158d91f667f12c6 100644 (file)
@@ -22,7 +22,7 @@ Submitted-by: Yousong Zhou <yszhou4tech@gmail.com>
 +
 +      mac = nvmem_cell_read(cell, &len);
 +      if (IS_ERR(mac))
-+              return PTR_ERR(mac);
++              return mac;
 +      if (len != ETH_ALEN) {
 +              kfree(mac);
 +              return ERR_PTR(-EINVAL);
@@ -39,7 +39,7 @@ Submitted-by: Yousong Zhou <yszhou4tech@gmail.com>
 +
 +      mac_ascii = nvmem_cell_read(cell, &len);
 +      if (IS_ERR(mac_ascii))
-+              return PTR_ERR(mac_ascii);
++              return mac_ascii;
 +      if (len != ETH_ALEN*2+5) {
 +              kfree(mac_ascii);
 +              return ERR_PTR(-EINVAL);