Commit ed6c3a6d authored by Corey Minyard's avatar Corey Minyard
Browse files

ipmi: Remove warning if no slave address is present



It's just noise, really, lots of systems don't have it.

Reported-by: default avatarKamlakant Patel <kamlakantp@marvell.com>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 44f56a39
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -188,12 +188,10 @@ static int platform_ipmi_probe(struct platform_device *pdev)
		return -EINVAL;

	rv = device_property_read_u8(&pdev->dev, "slave-addr", &slave_addr);
	if (rv) {
		dev_warn(&pdev->dev, "device has no slave-addr property\n");
	if (rv)
		io.slave_addr = 0x20;
	} else {
	else
		io.slave_addr = slave_addr;
	}

	io.irq = platform_get_irq(pdev, 0);
	if (io.irq > 0)
+1 −1
Original line number Diff line number Diff line
@@ -1995,7 +1995,7 @@ static int dmi_ipmi_probe(struct platform_device *pdev)

	rv = device_property_read_u8(&pdev->dev, "slave-addr", &slave_addr);
	if (rv)
		dev_warn(&pdev->dev, "device has no slave-addr property");
		slave_addr = 0x20;

	return new_ssif_client(i2c_addr, NULL, 0,
			       slave_addr, SI_SMBIOS, &pdev->dev);