Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759796AbXJYIH1 (ORCPT ); Thu, 25 Oct 2007 04:07:27 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755512AbXJYIGS (ORCPT ); Thu, 25 Oct 2007 04:06:18 -0400 Received: from havoc.gtf.org ([69.61.125.42]:55016 "EHLO havoc.gtf.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752514AbXJYIGQ (ORCPT ); Thu, 25 Oct 2007 04:06:16 -0400 To: LKML , linux-scsi@vger.kernel.org Message-Id: <03231528cf69b4194111178db23a7a387a573cb7.1193299380.git.jeff@garzik.org> In-Reply-To: References: From: Jeff Garzik Cc: akpm@linux-foundation.org, willy@linux.intel.com, kkeil@suse.de Subject: [PATCH] Remove #warnings for longstanding conditions. Date: Thu, 25 Oct 2007 04:06:15 -0400 (EDT) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1944 Lines: 52 These two warnings... drivers/isdn/capi/capidrv.c:2126:3: warning: #warning FIXME: maybe a race condition the card should be removed here from global list /kkeil drivers/scsi/advansys.c:71:2: warning: #warning this driver is still not properly converted to the DMA API ...represent conditions that have existed for years, and are duly noted in FIXMEs. There does not seem to be much need to warn on every kernel build for a driver bug or handicap that has existed for years. Signed-off-by: Jeff Garzik --- drivers/isdn/capi/capidrv.c | 3 ++- drivers/scsi/advansys.c | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/isdn/capi/capidrv.c b/drivers/isdn/capi/capidrv.c index 476012b..44f954d 100644 --- a/drivers/isdn/capi/capidrv.c +++ b/drivers/isdn/capi/capidrv.c @@ -2123,7 +2123,8 @@ static int capidrv_delcontr(u16 contr) printk(KERN_ERR "capidrv: delcontr: no contr %u\n", contr); return -1; } - #warning FIXME: maybe a race condition the card should be removed here from global list /kkeil + + /* FIXME: maybe a race condition the card should be removed here from global list /kkeil */ spin_unlock_irqrestore(&global_lock, flags); del_timer(&card->listentimer); diff --git a/drivers/scsi/advansys.c b/drivers/scsi/advansys.c index 9dd3952..e13e3a8 100644 --- a/drivers/scsi/advansys.c +++ b/drivers/scsi/advansys.c @@ -68,7 +68,6 @@ * 7. advansys_info is not safe against multiple simultaneous callers * 8. Add module_param to override ISA/VLB ioport array */ -#warning this driver is still not properly converted to the DMA API /* Enable driver /proc statistics. */ #define ADVANSYS_STATS -- 1.5.2.4 - 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/