Re: [PATCH] libata: add ATAPI module option

From: Jeff Garzik
Date: Tue Aug 30 2005 - 20:53:15 EST


Mark Lord wrote:
Jeff Garzik wrote:


-#ifndef ATA_ENABLE_ATAPI
- if (unlikely(dev->class == ATA_DEV_ATAPI))
- return NULL;
-#endif
+ if (atapi_enabled) {
+ if (unlikely(dev->class == ATA_DEV_ATAPI))
+ return NULL;
+ }

..

Is that if-stmt the right way around?
At first glance, I'd expect it to read:

if (!atapi_enabled) {
...

Cheers!

Indeed, thanks, fixed.

Jeff



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