Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d82efac authored by Robert Richter's avatar Robert Richter Committed by David S. Miller
Browse files

net: thunderx: bgx: Add log message when setting mac address

parent eee326fd
Loading
Loading
Loading
Loading
+8 −3
Original line number Original line Diff line number Diff line
@@ -886,7 +886,8 @@ static void bgx_get_qlm_mode(struct bgx *bgx)


#ifdef CONFIG_ACPI
#ifdef CONFIG_ACPI


static int acpi_get_mac_address(struct acpi_device *adev, u8 *dst)
static int acpi_get_mac_address(struct device *dev, struct acpi_device *adev,
				u8 *dst)
{
{
	u8 mac[ETH_ALEN];
	u8 mac[ETH_ALEN];
	int ret;
	int ret;
@@ -897,10 +898,13 @@ static int acpi_get_mac_address(struct acpi_device *adev, u8 *dst)
		goto out;
		goto out;


	if (!is_valid_ether_addr(mac)) {
	if (!is_valid_ether_addr(mac)) {
		dev_err(dev, "MAC address invalid: %pM\n", mac);
		ret = -EINVAL;
		ret = -EINVAL;
		goto out;
		goto out;
	}
	}


	dev_info(dev, "MAC address set to: %pM\n", mac);

	memcpy(dst, mac, ETH_ALEN);
	memcpy(dst, mac, ETH_ALEN);
out:
out:
	return ret;
	return ret;
@@ -911,14 +915,15 @@ static acpi_status bgx_acpi_register_phy(acpi_handle handle,
					 u32 lvl, void *context, void **rv)
					 u32 lvl, void *context, void **rv)
{
{
	struct bgx *bgx = context;
	struct bgx *bgx = context;
	struct device *dev = &bgx->pdev->dev;
	struct acpi_device *adev;
	struct acpi_device *adev;


	if (acpi_bus_get_device(handle, &adev))
	if (acpi_bus_get_device(handle, &adev))
		goto out;
		goto out;


	acpi_get_mac_address(adev, bgx->lmac[bgx->lmac_count].mac);
	acpi_get_mac_address(dev, adev, bgx->lmac[bgx->lmac_count].mac);


	SET_NETDEV_DEV(&bgx->lmac[bgx->lmac_count].netdev, &bgx->pdev->dev);
	SET_NETDEV_DEV(&bgx->lmac[bgx->lmac_count].netdev, dev);


	bgx->lmac[bgx->lmac_count].lmacid = bgx->lmac_count;
	bgx->lmac[bgx->lmac_count].lmacid = bgx->lmac_count;
out:
out: