mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
wlcore: add wl1285 compatible
Motorola Droid 4 uses a WL 1285C. With differences between chips not being public let's add explicit binding for wl1285 instead of relying on wl1283 being very similar. Reviewed-by: Rob Herring <robh@kernel.org> Acked-by: Kalle Valo <kvalo@codeaurora.org> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
1abf9ae719
commit
078b30da3f
@ -10,6 +10,7 @@ Required properties:
|
||||
* "ti,wl1273"
|
||||
* "ti,wl1281"
|
||||
* "ti,wl1283"
|
||||
* "ti,wl1285"
|
||||
* "ti,wl1801"
|
||||
* "ti,wl1805"
|
||||
* "ti,wl1807"
|
||||
|
@ -237,6 +237,7 @@ static const struct of_device_id wlcore_sdio_of_match_table[] = {
|
||||
{ .compatible = "ti,wl1273", .data = &wl127x_data },
|
||||
{ .compatible = "ti,wl1281", .data = &wl128x_data },
|
||||
{ .compatible = "ti,wl1283", .data = &wl128x_data },
|
||||
{ .compatible = "ti,wl1285", .data = &wl128x_data },
|
||||
{ .compatible = "ti,wl1801", .data = &wl18xx_data },
|
||||
{ .compatible = "ti,wl1805", .data = &wl18xx_data },
|
||||
{ .compatible = "ti,wl1807", .data = &wl18xx_data },
|
||||
|
@ -433,6 +433,7 @@ static const struct of_device_id wlcore_spi_of_match_table[] = {
|
||||
{ .compatible = "ti,wl1273", .data = &wl127x_data},
|
||||
{ .compatible = "ti,wl1281", .data = &wl128x_data},
|
||||
{ .compatible = "ti,wl1283", .data = &wl128x_data},
|
||||
{ .compatible = "ti,wl1285", .data = &wl128x_data},
|
||||
{ .compatible = "ti,wl1801", .data = &wl18xx_data},
|
||||
{ .compatible = "ti,wl1805", .data = &wl18xx_data},
|
||||
{ .compatible = "ti,wl1807", .data = &wl18xx_data},
|
||||
|
Loading…
Reference in New Issue
Block a user