[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1347404295-7985-2-git-send-email-iws@ovro.caltech.edu>
Date: Tue, 11 Sep 2012 15:58:14 -0700
From: "Ira W. Snyder" <iws@...o.caltech.edu>
To: linux-kernel@...r.kernel.org
Cc: linux-can@...r.kernel.org, sameo@...ux.intel.com,
"Ira W. Snyder" <iws@...o.caltech.edu>
Subject: [PATCH 1/2] mfd/janz-cmodio: fix MODULBus number sysfs entry
From: "Ira W. Snyder" <iws@...o.caltech.edu>
Revision 1.0 of the Janz CMOD-IO Carrier Board does not contain zeroes
in the top 4 bits of the modulbus_num (int_enable) register. Mask off
the unused bits so that the correct value is displayed in sysfs.
Cc: Samuel Ortiz <sameo@...ux.intel.com>
Signed-off-by: Ira W. Snyder <iws@...o.caltech.edu>
---
drivers/mfd/janz-cmodio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mfd/janz-cmodio.c b/drivers/mfd/janz-cmodio.c
index 2ea9998..32d0efd 100644
--- a/drivers/mfd/janz-cmodio.c
+++ b/drivers/mfd/janz-cmodio.c
@@ -216,7 +216,7 @@ static int __devinit cmodio_pci_probe(struct pci_dev *dev,
}
/* Read the hex switch on the carrier board */
- priv->hex = ioread8(&priv->ctrl->int_enable);
+ priv->hex = ioread8(&priv->ctrl->int_enable) & 0x0f;
/* Add the MODULbus number (hex switch value) to the device's sysfs */
ret = sysfs_create_group(&dev->dev.kobj, &cmodio_sysfs_attr_group);
--
1.7.8.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists