summaryrefslogtreecommitdiff
path: root/drivers/ata
diff options
context:
space:
mode:
authorOndrej Zary <linux@zary.sk>2023-02-04 23:55:27 +0300
committerDamien Le Moal <damien.lemoal@opensource.wdc.com>2023-02-07 02:59:35 +0300
commit8844f0aa8dc42f54dc278c8d4ecbf32e92f2d6f1 (patch)
tree9fd8083bcebb8a99df745d958c95cc2569a06921 /drivers/ata
parent72f2b0b2185099dce354c805009f591dda3ab73d (diff)
downloadlinux-8844f0aa8dc42f54dc278c8d4ecbf32e92f2d6f1.tar.xz
ata: pata_parport: Fix ida_alloc return value error check
pi->dev.id is unsigned so error checking of ida_alloc return value does not work. Fix it. Signed-off-by: Ondrej Zary <linux@zary.sk> Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru> Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/pata_parport/pata_parport.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/ata/pata_parport/pata_parport.c b/drivers/ata/pata_parport/pata_parport.c
index 9e8ad93d7e59..294a266a0dda 100644
--- a/drivers/ata/pata_parport/pata_parport.c
+++ b/drivers/ata/pata_parport/pata_parport.c
@@ -424,6 +424,7 @@ static struct pi_adapter *pi_init_one(struct parport *parport,
struct ata_host *host;
struct pi_adapter *pi;
struct pi_device_match match = { .parport = parport, .proto = pr };
+ int id;
/*
* Abort if there's a device already registered on the same parport
@@ -441,9 +442,10 @@ static struct pi_adapter *pi_init_one(struct parport *parport,
pi->dev.bus = &pata_parport_bus_type;
pi->dev.driver = &pr->driver;
pi->dev.release = pata_parport_dev_release;
- pi->dev.id = ida_alloc(&pata_parport_bus_dev_ids, GFP_KERNEL);
- if (pi->dev.id < 0)
+ id = ida_alloc(&pata_parport_bus_dev_ids, GFP_KERNEL);
+ if (id < 0)
return NULL; /* pata_parport_dev_release will do kfree(pi) */
+ pi->dev.id = id;
dev_set_name(&pi->dev, "pata_parport.%u", pi->dev.id);
if (device_register(&pi->dev)) {
put_device(&pi->dev);