Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S271943AbTHDREC (ORCPT ); Mon, 4 Aug 2003 13:04:02 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S271944AbTHDREC (ORCPT ); Mon, 4 Aug 2003 13:04:02 -0400 Received: from tandu.perlsupport.com ([66.220.6.226]:27847 "EHLO tandu.perlsupport.com") by vger.kernel.org with ESMTP id S271943AbTHDRD6 (ORCPT ); Mon, 4 Aug 2003 13:03:58 -0400 Date: Mon, 4 Aug 2003 13:03:59 -0400 From: Chip Salzenberg To: Linux Kernel Subject: [PATCH] 2.4.22pre10: Missing parens in drivesr/pcmcia/ti113x.h Message-ID: <20030804170359.GA7168@perlsupport.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1063 Lines: 23 This patch seems like a precedence fix. I don't have the appropriate hardware to test a behavior change, so I can't be sure. Index: linux/drivers/pcmcia/ti113x.h --- linux/drivers/pcmcia/ti113x.h.old 2003-08-04 12:45:32.000000000 -0400 +++ linux/drivers/pcmcia/ti113x.h 2003-08-04 12:53:08.000000000 -0400 @@ -180,5 +180,5 @@ devctl = config_readb(socket, TI113X_DEVICE_CONTROL); - if (devctl & TI113X_DCR_IMODE_MASK != TI12XX_DCR_IMODE_ALL_SERIAL) { + if ((devctl & TI113X_DCR_IMODE_MASK) != TI12XX_DCR_IMODE_ALL_SERIAL) { printk (KERN_INFO "ti113x: Routing card interrupts to PCI\n"); -- Chip Salzenberg - a.k.a. - "I wanted to play hopscotch with the impenetrable mystery of existence, but he stepped in a wormhole and had to go in early." // MST3K - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/