Commit c08148bb authored by Sujith Manoharan's avatar Sujith Manoharan Committed by John W. Linville

ath9k: Add QCA953x WMAC platform support

Signed-off-by: default avatarSujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 7d4b829a
...@@ -39,6 +39,10 @@ static const struct platform_device_id ath9k_platform_id_table[] = { ...@@ -39,6 +39,10 @@ static const struct platform_device_id ath9k_platform_id_table[] = {
.name = "qca955x_wmac", .name = "qca955x_wmac",
.driver_data = AR9300_DEVID_QCA955X, .driver_data = AR9300_DEVID_QCA955X,
}, },
{
.name = "qca953x_wmac",
.driver_data = AR9300_DEVID_AR953X,
},
{}, {},
}; };
......
...@@ -3048,6 +3048,7 @@ static struct { ...@@ -3048,6 +3048,7 @@ static struct {
{ AR_SREV_VERSION_9462, "9462" }, { AR_SREV_VERSION_9462, "9462" },
{ AR_SREV_VERSION_9550, "9550" }, { AR_SREV_VERSION_9550, "9550" },
{ AR_SREV_VERSION_9565, "9565" }, { AR_SREV_VERSION_9565, "9565" },
{ AR_SREV_VERSION_9531, "9531" },
}; };
/* For devices with external radios */ /* For devices with external radios */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment