diff options
author | Nicholas Krause <xerofoify@gmail.com> | 2014-12-21 22:36:37 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-12-25 15:27:16 -0500 |
commit | 0628ee7c81a8ced9b10f9ee300707f7f79fdecf1 (patch) | |
tree | 56a7dc11c1787be529706d3c2ef1d97dc46c9de5 /drivers/ata | |
parent | 97bf6af1f928216fd6c5a66e8a57bfa95a659672 (diff) | |
download | linux-0628ee7c81a8ced9b10f9ee300707f7f79fdecf1.tar.gz linux-0628ee7c81a8ced9b10f9ee300707f7f79fdecf1.tar.bz2 linux-0628ee7c81a8ced9b10f9ee300707f7f79fdecf1.zip |
libata: s/ata_id_removeable()/ata_id_removable()/
Changes the spelling typos of removeable to removable where
ata_id_removeable is defined in ata.h and called in libata-scsi.c
respectively.
Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index e364e86e84d7..7659d6468303 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c @@ -1995,8 +1995,8 @@ static unsigned int ata_scsiop_inq_std(struct ata_scsi_args *args, u8 *rbuf) VPRINTK("ENTER\n"); - /* set scsi removeable (RMB) bit per ata bit */ - if (ata_id_removeable(args->id)) + /* set scsi removable (RMB) bit per ata bit */ + if (ata_id_removable(args->id)) hdr[1] |= (1 << 7); if (args->dev->class == ATA_DEV_ZAC) { |