| Submitter | David Miller |
|---|---|
| Date | Jan. 14, 2011, 8:40 p.m. |
| Message ID | <20110114.124053.111572121.davem@davemloft.net> |
| Download | mbox | patch |
| Permalink | /patch/79010/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
On Fri, 2011-01-14 at 12:40 -0800, David Miller wrote: > From: Richard Mortimer <richm@oldelvet.org.uk> > Date: Fri, 14 Jan 2011 11:39:28 +0000 > > > FYI Sinan Akman has reported that cassini does not compile for x86 any > > longer. Message included below. > > > > Does anyone have suggestions as to the best way to resolve this? > > I'll fix it like this: > Thank you. Regards Richard -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index 7206ab2..3437613 100644 --- a/drivers/net/cassini.c +++ b/drivers/net/cassini.c @@ -3203,7 +3203,7 @@ static int cas_get_vpd_info(struct cas *cp, unsigned char *dev_addr, int phy_type = CAS_PHY_MII_MDIO0; /* default phy type */ int mac_off = 0; -#if defined(CONFIG_OF) +#if defined(CONFIG_SPARC) const unsigned char *addr; #endif @@ -3354,7 +3354,7 @@ use_random_mac_addr: if (found & VPD_FOUND_MAC) goto done; -#if defined(CONFIG_OF) +#if defined(CONFIG_SPARC) addr = of_get_property(cp->of_node, "local-mac-address", NULL); if (addr != NULL) { memcpy(dev_addr, addr, 6); @@ -5031,7 +5031,7 @@ static int __devinit cas_init_one(struct pci_dev *pdev, cp->msg_enable = (cassini_debug < 0) ? CAS_DEF_MSG_ENABLE : cassini_debug; -#if defined(CONFIG_OF) +#if defined(CONFIG_SPARC) cp->of_node = pci_device_to_OF_node(pdev); #endif