Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: wfx: follow compatible = vendor,chip format

As for SPI, follow "vendor,chip" format 'compatible' string also for
SDIO bus.

Fixes: 0096214a59a7 ("staging: wfx: add support for I/O access")
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Link: https://lore.kernel.org/r/96b95d52d0b613065fe655f1d0fe9d7c6adf65fb.1581416843.git.mirq-linux@rere.qmqm.pl
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Michał Mirosław and committed by
Greg Kroah-Hartman
7f70c919 eec6e3ee

+3 -2
+2 -2
drivers/staging/wfx/Documentation/devicetree/bindings/net/wireless/siliabs,wfx.txt
··· 45 45 become mandatory in the future). 46 46 47 47 Required properties: 48 - - compatible: Should be "silabs,wfx-sdio" 48 + - compatible: Should be "silabs,wf200" 49 49 - reg: Should be 1 50 50 51 51 In addition, it is recommended to declare a mmc-pwrseq on SDIO host above WFx. ··· 71 71 #size = <0>; 72 72 73 73 mmc@1 { 74 - compatible = "silabs,wfx-sdio"; 74 + compatible = "silabs,wf200"; 75 75 reg = <1>; 76 76 pinctrl-names = "default"; 77 77 pinctrl-0 = <&wfx_wakeup>;
+1
drivers/staging/wfx/bus_sdio.c
··· 251 251 #ifdef CONFIG_OF 252 252 static const struct of_device_id wfx_sdio_of_match[] = { 253 253 { .compatible = "silabs,wfx-sdio" }, 254 + { .compatible = "silabs,wf200" }, 254 255 { }, 255 256 }; 256 257 MODULE_DEVICE_TABLE(of, wfx_sdio_of_match);