On 12/13/18 11:47 AM, Hannes Reinecke wrote: > Signed-off-by: Hannes Reinecke <hare@xxxxxxxx> Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@xxxxxxxxxxx> This patch is obviously correct and is independent of all other patches in the series so it should be moved at the beginning of the patchset (or simply applied now). Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics > --- > include/linux/libata.h | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/include/linux/libata.h b/include/linux/libata.h > index 2f992b6ad626..3ed1b9ce1888 100644 > --- a/include/linux/libata.h > +++ b/include/linux/libata.h > @@ -602,7 +602,7 @@ struct ata_ioports { > > struct ata_host { > spinlock_t lock; > - struct device *dev; > + struct device *dev; > void __iomem * const *iomap; > unsigned int n_ports; > unsigned int n_tags; /* nr of NCQ tags */ > @@ -822,7 +822,7 @@ struct ata_port { > /* Flags that change dynamically, protected by ap->lock */ > unsigned int pflags; /* ATA_PFLAG_xxx */ > unsigned int print_id; /* user visible unique port ID */ > - unsigned int local_port_no; /* host local port num */ > + unsigned int local_port_no; /* host local port num */ > unsigned int port_no; /* 0 based port no. inside the host */ > > #ifdef CONFIG_ATA_SFF > @@ -857,7 +857,7 @@ struct ata_port { > > struct ata_port_stats stats; > struct ata_host *host; > - struct device *dev; > + struct device *dev; > struct device tdev; > > struct mutex scsi_scan_mutex; > @@ -1008,7 +1008,7 @@ struct ata_port_info { > unsigned long mwdma_mask; > unsigned long udma_mask; > struct ata_port_operations *port_ops; > - void *private_data; > + void *private_data; > }; > > struct ata_timing { > @@ -1499,7 +1499,7 @@ static inline bool ata_tag_valid(unsigned int tag) > * Internal use only, iterate commands ignoring error handling and > * status of 'qc'. > */ > -#define ata_qc_for_each_raw(ap, qc, tag) \ > +#define ata_qc_for_each_raw(ap, qc, tag) \ > __ata_qc_for_each(ap, qc, tag, ATA_MAX_QUEUE, __ata_qc_from_tag) > > /*