Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ata: sata_qstor: Drop pointless VPRINTK() calls

Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>

authored by

Hannes Reinecke and committed by
Damien Le Moal
05d8501f 156e67cc

-11
-11
drivers/ata/sata_qstor.c
··· 252 252 len = sg_dma_len(sg); 253 253 *(__le32 *)prd = cpu_to_le32(len); 254 254 prd += sizeof(u64); 255 - 256 - VPRINTK("PRD[%u] = (0x%llX, 0x%X)\n", si, 257 - (unsigned long long)addr, len); 258 255 } 259 256 260 257 return si; ··· 264 267 u8 hflags = QS_HF_DAT | QS_HF_IEN | QS_HF_VLD; 265 268 u64 addr; 266 269 unsigned int nelem; 267 - 268 - VPRINTK("ENTER\n"); 269 270 270 271 qs_enter_reg_mode(qc->ap); 271 272 if (qc->tf.protocol != ATA_PROT_DMA) ··· 298 303 { 299 304 struct ata_port *ap = qc->ap; 300 305 u8 __iomem *chan = qs_mmio_base(ap->host) + (ap->port_no * 0x4000); 301 - 302 - VPRINTK("ENTER, ap %p\n", ap); 303 306 304 307 writeb(QS_CTR0_CLER, chan + QS_CCT_CTR0); 305 308 wmb(); /* flush PRDs and pkt to memory */ ··· 428 435 unsigned int handled = 0; 429 436 unsigned long flags; 430 437 431 - VPRINTK("ENTER\n"); 432 - 433 438 spin_lock_irqsave(&host->lock, flags); 434 439 handled = qs_intr_pkt(host) | qs_intr_mmio(host); 435 440 spin_unlock_irqrestore(&host->lock, flags); 436 - 437 - VPRINTK("EXIT\n"); 438 441 439 442 return IRQ_RETVAL(handled); 440 443 }