diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-05-11 12:51:05 -0600 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2018-05-11 13:10:43 -0700 |
commit | e3ed8939644166a7560a33c46f508584a7f1756a (patch) | |
tree | f8b52a6aeb75ec45f131373880c53d922e972f77 /drivers/ata/sata_fsl.c | |
parent | 4e5b6260cc9ba84ec127f948173ff7d87581f029 (diff) | |
download | lwn-e3ed8939644166a7560a33c46f508584a7f1756a.tar.gz lwn-e3ed8939644166a7560a33c46f508584a7f1756a.zip |
libata: bump ->qc_active to a 64-bit type
This is in preparation for allowing full usage of the tag space,
which means that our reserved error handling command will be
using an internal tag value of 32. This doesn't fit in a u32, so
move to a u64.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/sata_fsl.c')
-rw-r--r-- | drivers/ata/sata_fsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index cb67847d2157..1b22d5c339d7 100644 --- a/drivers/ata/sata_fsl.c +++ b/drivers/ata/sata_fsl.c @@ -1266,7 +1266,7 @@ static void sata_fsl_host_intr(struct ata_port *ap) } VPRINTK("Status of all queues :\n"); - VPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x,CQ=0x%x,apqa=0x%x\n", + VPRINTK("done_mask/CC = 0x%x, CA = 0x%x, CE=0x%x,CQ=0x%x,apqa=0x%llx\n", done_mask, ioread32(hcr_base + CA), ioread32(hcr_base + CE), |