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 <[EMAIL PROTECTED]> --- 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 [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/