staging: unisys: Do not use 0 as the default bus root device number
authorDon Zickus <dzickus@redhat.com>
Thu, 4 Jun 2015 13:22:40 +0000 (09:22 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Jun 2015 20:36:43 +0000 (13:36 -0700)
I used 0 as the device id for the bus root, neglecting the fact that
device 0 is a valid id in Unisys's configuration.  Modify this to
use UINT_MAX instead as a unique number.

As fallout from this change it was noticed the bus_no and dev_no was not
defined the same way consistently.  Fix visorbus.h to use u32 there.  Fix
the resulting printk warning too.

Signed-off-by: Don Zickus <dzickus@redhat.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/include/visorbus.h
drivers/staging/unisys/visorbus/visorbus_main.c
drivers/staging/unisys/visorbus/visorchipset.c

index 3152ba47c7028f7ffc50f153d543a38cd19a2f70..c60f7d41f6406b3b2408991566af3fca036f2eed 100644 (file)
@@ -150,8 +150,8 @@ struct visor_device {
        struct semaphore visordriver_callback_lock;
        bool pausing;
        bool resuming;
-       unsigned long chipset_bus_no;
-       unsigned long chipset_dev_no;
+       u32 chipset_bus_no;
+       u32 chipset_dev_no;
        struct visorchipset_state state;
        uuid_le type;
        uuid_le inst;
index 19bb355ba1a06b19f9e1e99ec93f30015e7088bf..ec3022b5af9b53e067308427a0b501eb930c1a3f 100644 (file)
@@ -572,7 +572,7 @@ static ssize_t client_bus_info_show(struct device *dev,
                if (vdev->name)
                        partition_name = vdev->name;
                x = snprintf(p, remain,
-                            "Client device / client driver info for %s partition (vbus #%ld):\n",
+                            "Client device / client driver info for %s partition (vbus #%d):\n",
                             partition_name, vdev->chipset_dev_no);
                p += x;
                remain -= x;
index 4dd0a075b99270617fd6f4481edfd89ef66ebbf8..618732b6e2e1b2e0ed97abcb1de79940236b90e8 100644 (file)
@@ -56,6 +56,8 @@
 #define UNISYS_SPAR_ID_ECX 0x70537379
 #define UNISYS_SPAR_ID_EDX 0x34367261
 
+#define BUS_ROOT_DEVICE        UINT_MAX
+
 /*
  * Module parameters
  */
@@ -727,8 +729,8 @@ static int match_visorbus_dev_by_id(struct device *dev, void *data)
        u32 bus_no = id->bus_no;
        u32 dev_no = id->dev_no;
 
-       if (((bus_no == -1) || (vdev->chipset_bus_no == bus_no)) &&
-           ((dev_no == -1) || (vdev->chipset_dev_no == dev_no)))
+       if ((vdev->chipset_bus_no == bus_no) &&
+           (vdev->chipset_dev_no == dev_no))
                return 1;
 
        return 0;
This page took 0.029256 seconds and 5 git commands to generate.