mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 14:43:03 +00:00
staging: wfx: follow compatible = vendor,chip format
As for SPI, follow "vendor,chip" format 'compatible' string also for
SDIO bus.
Fixes: 0096214a59
("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>
This commit is contained in:
parent
eec6e3ee63
commit
7f70c919ff
@ -45,7 +45,7 @@ case. Thus declaring WFxxx chip in device tree is strongly recommended (and may
|
||||
become mandatory in the future).
|
||||
|
||||
Required properties:
|
||||
- compatible: Should be "silabs,wfx-sdio"
|
||||
- compatible: Should be "silabs,wf200"
|
||||
- reg: Should be 1
|
||||
|
||||
In addition, it is recommended to declare a mmc-pwrseq on SDIO host above WFx.
|
||||
@ -71,7 +71,7 @@ Example:
|
||||
#size = <0>;
|
||||
|
||||
mmc@1 {
|
||||
compatible = "silabs,wfx-sdio";
|
||||
compatible = "silabs,wf200";
|
||||
reg = <1>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&wfx_wakeup>;
|
||||
|
@ -251,6 +251,7 @@ MODULE_DEVICE_TABLE(sdio, wfx_sdio_ids);
|
||||
#ifdef CONFIG_OF
|
||||
static const struct of_device_id wfx_sdio_of_match[] = {
|
||||
{ .compatible = "silabs,wfx-sdio" },
|
||||
{ .compatible = "silabs,wf200" },
|
||||
{ },
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, wfx_sdio_of_match);
|
||||
|
Loading…
Reference in New Issue
Block a user