wifi: wfx: align declarations between bus_spi.c and bus_sdio.c

Just declare fields in the same order in bus_spi.c and bus_sdio.c

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://patch.msgid.link/20250304153224.39083-2-jerome.pouiller@silabs.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
Jérôme Pouiller
2025-03-04 16:32:20 +01:00
committed by Johannes Berg
parent 72a6caf5ec
commit d9819f537c

View File

@@ -274,11 +274,11 @@ MODULE_DEVICE_TABLE(of, wfx_spi_of_match);
#endif
struct spi_driver wfx_spi_driver = {
.id_table = wfx_spi_id,
.probe = wfx_spi_probe,
.remove = wfx_spi_remove,
.driver = {
.name = "wfx-spi",
.of_match_table = of_match_ptr(wfx_spi_of_match),
},
.id_table = wfx_spi_id,
.probe = wfx_spi_probe,
.remove = wfx_spi_remove,
};