mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
serial: max310x: Fix to avoid potential NULL pointer dereference
commit 3a10e3dd52 upstream.
of_match_device can return a NULL pointer when matching device is not
found. This patch avoids a scenario causing NULL pointer derefernce.
Signed-off-by: Aditya Pakki <pakki001@umn.edu>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6c8f9d93c2
commit
0d42abfacf
@@ -1323,6 +1323,8 @@ static int max310x_spi_probe(struct spi_device *spi)
|
||||
if (spi->dev.of_node) {
|
||||
const struct of_device_id *of_id =
|
||||
of_match_device(max310x_dt_ids, &spi->dev);
|
||||
if (!of_id)
|
||||
return -ENODEV;
|
||||
|
||||
devtype = (struct max310x_devtype *)of_id->data;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user