summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Juhos <j4g8y7@gmail.com>2026-09-08 22:23:55 +0200
committerMark Brown <broonie@kernel.org>2026-09-09 17:55:37 +0100
commit44d39535cd4f7343284336c7288018db2a167bde (patch)
treebf32c10156588b887b9e10cb785a0908299f1895
parent34e32e9ade58e32daf933974c9b697d066fc5aaa (diff)
downloadlinux-next-44d39535cd4f7343284336c7288018db2a167bde.tar.gz
linux-next-44d39535cd4f7343284336c7288018db2a167bde.zip
spi: spi-qpic-snand: remove interim 'dev_data' variable from qcom_spi_probe()
The dev_data variable in the qcom_spi_probe() function is only used to temporarily store a pointer of the device specific data before that value gets assigned to 'snandc->props'. Remove the interim variable and use 'snandc->props' directly instead in order to simplify the code. No functional changes. Signed-off-by: Gabor Juhos <j4g8y7@gmail.com> Link: https://patch.msgid.link/20260908-qpic-snand-drop-dev_data-var-v1-1-147d3fab6c48@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/spi/spi-qpic-snand.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/spi/spi-qpic-snand.c b/drivers/spi/spi-qpic-snand.c
index 61b1f2eb19ce..9eafaea74f6b 100644
--- a/drivers/spi/spi-qpic-snand.c
+++ b/drivers/spi/spi-qpic-snand.c
@@ -1585,7 +1585,6 @@ static int qcom_spi_probe(struct platform_device *pdev)
struct qpic_spi_nand *qspi;
struct qpic_ecc *ecc;
struct resource *res;
- const void *dev_data;
int ret;
ecc = devm_kzalloc(dev, sizeof(*ecc), GFP_KERNEL);
@@ -1613,14 +1612,12 @@ static int qcom_spi_probe(struct platform_device *pdev)
snandc->qspi->ctlr = ctlr;
snandc->qspi->ecc = ecc;
- dev_data = of_device_get_match_data(dev);
- if (!dev_data) {
+ snandc->props = of_device_get_match_data(dev);
+ if (!snandc->props) {
dev_err(&pdev->dev, "failed to get device data\n");
return -ENODEV;
}
- snandc->props = dev_data;
-
snandc->core_clk = devm_clk_get_enabled(dev, "core");
if (IS_ERR(snandc->core_clk))
return PTR_ERR(snandc->core_clk);