]> Git Repo - linux.git/commitdiff
Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with gpiod_get_optional()
authorBartosz Golaszewski <[email protected]>
Thu, 8 Feb 2024 16:40:17 +0000 (17:40 +0100)
committerLuiz Augusto von Dentz <[email protected]>
Wed, 6 Mar 2024 22:25:34 +0000 (17:25 -0500)
The optional variants for the gpiod_get() family of functions return NULL
if the GPIO in question is not associated with this device. They return
ERR_PTR() on any other error. NULL descriptors are graciously handled by
GPIOLIB and can be safely passed to any of the GPIO consumer interfaces
as they will return 0 and act as if the function succeeded. If one is
using the optional variant, then there's no point in checking for NULL.

Fixes: 6845667146a2 ("Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe")
Signed-off-by: Bartosz Golaszewski <[email protected]>
Signed-off-by: Luiz Augusto von Dentz <[email protected]>
drivers/bluetooth/hci_qca.c

index edd2a81b4d5ed7f5f9f36058ffe9131877ddde56..8a60ad7acd7052b7faa6784ceaca1d417002e4a1 100644 (file)
@@ -2326,7 +2326,7 @@ static int qca_serdev_probe(struct serdev_device *serdev)
 
                qcadev->bt_en = devm_gpiod_get_optional(&serdev->dev, "enable",
                                               GPIOD_OUT_LOW);
-               if (IS_ERR_OR_NULL(qcadev->bt_en) &&
+               if (IS_ERR(qcadev->bt_en) &&
                    (data->soc_type == QCA_WCN6750 ||
                     data->soc_type == QCA_WCN6855)) {
                        dev_err(&serdev->dev, "failed to acquire BT_EN gpio\n");
@@ -2335,7 +2335,7 @@ static int qca_serdev_probe(struct serdev_device *serdev)
 
                qcadev->sw_ctrl = devm_gpiod_get_optional(&serdev->dev, "swctrl",
                                               GPIOD_IN);
-               if (IS_ERR_OR_NULL(qcadev->sw_ctrl) &&
+               if (IS_ERR(qcadev->sw_ctrl) &&
                    (data->soc_type == QCA_WCN6750 ||
                     data->soc_type == QCA_WCN6855 ||
                     data->soc_type == QCA_WCN7850))
@@ -2357,7 +2357,7 @@ static int qca_serdev_probe(struct serdev_device *serdev)
        default:
                qcadev->bt_en = devm_gpiod_get_optional(&serdev->dev, "enable",
                                               GPIOD_OUT_LOW);
-               if (IS_ERR_OR_NULL(qcadev->bt_en)) {
+               if (IS_ERR(qcadev->bt_en)) {
                        dev_warn(&serdev->dev, "failed to acquire enable gpio\n");
                        power_ctrl_enabled = false;
                }
This page took 0.061593 seconds and 4 git commands to generate.