|
@@ -493,9 +493,10 @@ int cnss_set_pcie_gen_speed(struct device *dev, u8 pcie_gen_speed)
|
|
|
if (!plat_priv)
|
|
|
return -EINVAL;
|
|
|
|
|
|
- if (plat_priv->device_id != QCA6490_DEVICE_ID ||
|
|
|
- !plat_priv->fw_pcie_gen_switch)
|
|
|
+ if (!plat_priv->fw_pcie_gen_switch) {
|
|
|
+ cnss_pr_err("Firmware does not support PCIe gen switch\n");
|
|
|
return -EOPNOTSUPP;
|
|
|
+ }
|
|
|
|
|
|
if (pcie_gen_speed < QMI_PCIE_GEN_SPEED_1_V01 ||
|
|
|
pcie_gen_speed > QMI_PCIE_GEN_SPEED_3_V01)
|