From: Jens Taprogge <jens.tapro...@taprogge.org>

Use the __tpci200_{set,clear}_mask routines to access control
register.  Do not overwrite flags unrelated to interrupt handling.

Signed-off-by: Jens Taprogge <jens.tapro...@taprogge.org>
Signed-off-by: Samuel Iglesias Gonsalvez <sigles...@igalia.com>
---
 drivers/staging/ipack/bridges/tpci200.c |   31 ++++++-------------------------
 1 file changed, 6 insertions(+), 25 deletions(-)

diff --git a/drivers/staging/ipack/bridges/tpci200.c 
b/drivers/staging/ipack/bridges/tpci200.c
index 2560519..3285dad 100644
--- a/drivers/staging/ipack/bridges/tpci200.c
+++ b/drivers/staging/ipack/bridges/tpci200.c
@@ -278,37 +278,18 @@ out_disable_pci:
 static int __tpci200_request_irq(struct tpci200_board *tpci200,
                                 struct ipack_device *dev)
 {
-       unsigned short slot_ctrl;
-
-       /* Set the default parameters of the slot
-        * INT0 enabled, level sensitive
-        * INT1 enabled, level sensitive
-        * error interrupt disabled
-        * timeout interrupt disabled
-        * recover time disabled
-        * clock rate 8 MHz
-        */
-       slot_ctrl = TPCI200_INT0_EN | TPCI200_INT1_EN;
-       writew(slot_ctrl, &tpci200->info->interface_regs->control[dev->slot]);
-
+       __tpci200_set_mask(
+                       &tpci200->info->interface_regs->control[dev->slot],
+                       TPCI200_INT0_EN | TPCI200_INT1_EN);
        return 0;
 }
 
 static void __tpci200_free_irq(struct tpci200_board *tpci200,
                               struct ipack_device *dev)
 {
-       unsigned short slot_ctrl;
-
-       /* Set the default parameters of the slot
-        * INT0 disabled, level sensitive
-        * INT1 disabled, level sensitive
-        * error interrupt disabled
-        * timeout interrupt disabled
-        * recover time disabled
-        * clock rate 8 MHz
-        */
-       slot_ctrl = 0;
-       writew(slot_ctrl, &tpci200->info->interface_regs->control[dev->slot]);
+       __tpci200_clear_mask(
+                       &tpci200->info->interface_regs->control[dev->slot],
+                       TPCI200_INT0_EN | TPCI200_INT1_EN);
 }
 
 static int tpci200_free_irq(struct ipack_device *dev)
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to