Hello, Hannes. On Thu, Jul 14, 2016 at 05:15:51PM +0200, Hannes Reinecke wrote: > >> +static inline bool ata_is_fpdma(u8 prot) > >> +{ > >> + return ata_prot_flags(prot) & ATA_PROT_FLAG_FPDMA; > >> +} > > > > ??? > > > Yeah, strictly speaking there is no need for ATA_PROT_FLAG_FPDMA. > I'll be removing it if you insist. No, it's just really confusing to have a function named ata_is_fpdma() and then have it test whether the protocol is NCQ or DMA. If you wanna do that, name it ata_is_dma_or_fpdma(). ata_is_fpdma() should test (prot & ATA_PROT_FLAG_FPDMA) == ATA_PROT_FLAG_FPDMA. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html