staging: ti-st: fix kim platform device id
authorPavan Savoy <pavan_savoy@ti.com>
Fri, 10 Sep 2010 19:58:55 +0000 (15:58 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 16 Sep 2010 19:54:45 +0000 (12:54 -0700)
Platform devices tend to have id as -1 when only 1 device exist and
a value >=0 when multiple devices exist, since we plan to store all
these platform devices if multiple exist, there was a requirement to
have id to be >=0.
The patch fixes this problem.

Signed-off-by: Pavan Savoy <pavan_savoy@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/ti-st/st_kim.c

index 9e99463f76e8a0d048f7ec8667a455125d88cb0b..be18c7a174461fd3f3c37052dae4f1fde08cf96a 100644 (file)
@@ -638,7 +638,14 @@ static int kim_probe(struct platform_device *pdev)
        long *gpios = pdev->dev.platform_data;
        struct kim_data_s       *kim_gdata;
 
-       st_kim_devices[pdev->id] = pdev;
+       if ((pdev->id != -1) && (pdev->id < MAX_ST_DEVICES)) {
+               /* multiple devices could exist */
+               st_kim_devices[pdev->id] = pdev;
+       } else {
+               /* platform's sure about existance of 1 device */
+               st_kim_devices[0] = pdev;
+       }
+
        kim_gdata = kzalloc(sizeof(struct kim_data_s), GFP_ATOMIC);
        if (!kim_gdata) {
                pr_err("no mem to allocate");