|
@@ -23,14 +23,17 @@
|
|
|
#include "common.h"
|
|
|
#include "of.h"
|
|
|
|
|
|
-void brcmf_of_probe(struct device *dev, struct brcmfmac_sdio_pd *sdio)
|
|
|
+void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
|
|
|
+ struct brcmf_mp_device *settings)
|
|
|
{
|
|
|
+ struct brcmfmac_sdio_pd *sdio = &settings->bus.sdio;
|
|
|
struct device_node *np = dev->of_node;
|
|
|
int irq;
|
|
|
u32 irqf;
|
|
|
u32 val;
|
|
|
|
|
|
- if (!np || !of_device_is_compatible(np, "brcm,bcm4329-fmac"))
|
|
|
+ if (!np || bus_type != BRCMF_BUSTYPE_SDIO ||
|
|
|
+ !of_device_is_compatible(np, "brcm,bcm4329-fmac"))
|
|
|
return;
|
|
|
|
|
|
if (of_property_read_u32(np, "brcm,drive-strength", &val) == 0)
|