Re: [PATCH 07/23] wfx: add bus_sdio.c
From: Jérôme Pouiller <jerome.pouiller@silabs.com>
Date: 2020-10-16 12:16:54
Also in:
linux-devicetree, linux-wireless, lkml
Hello Ulf, On Friday 16 October 2020 13:30:30 CEST Ulf Hansson wrote:
On Mon, 12 Oct 2020 at 12:47, Jerome Pouiller [off-list ref] wrote:quoted
From: Jérôme Pouiller <jerome.pouiller@silabs.com>Please fill out this commit message to explain a bit more about the patch and the HW it enables support for.
This patch belongs to a series[1] that will squashed before to be committed (Kalle Valo prefer to process like that for this review). So, I didn't bother to write real commit messages. For the v2, I will take care to add linux-mmc in copy of the whole series. [1] https://lore.kernel.org/lkml/20201012104648.985256-1-Jerome.Pouiller@silabs.com/ (local)
quoted
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com> --- drivers/net/wireless/silabs/wfx/bus_sdio.c | 269 +++++++++++++++++++++ 1 file changed, 269 insertions(+) create mode 100644 drivers/net/wireless/silabs/wfx/bus_sdio.cdiff --git a/drivers/net/wireless/silabs/wfx/bus_sdio.c b/drivers/net/wireless/silabs/wfx/bus_sdio.c new file mode 100644 index 000000000000..e06d7e1ebe9c
[...]
quoted
+struct sdio_driver wfx_sdio_driver = { + .name = "wfx-sdio", + .id_table = wfx_sdio_ids, + .probe = wfx_sdio_probe, + .remove = wfx_sdio_remove, + .drv = { + .owner = THIS_MODULE, + .of_match_table = wfx_sdio_of_match, + } +};I couldn't find where you call sdio_register|unregister_driver(), but maybe that's done from another patch in series?
Indeed, it is here[2]. [2] https://lore.kernel.org/lkml/20201012104648.985256-5-Jerome.Pouiller@silabs.com/ (local) -- Jérôme Pouiller