aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libata-core.c
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2006-02-12 20:02:46 -0500
committerJeff Garzik <jgarzik@pobox.com>2006-02-20 04:54:22 -0500
commit6a62a04d4705df4f9f9bee39e889b9e920eeca47 (patch)
treeea1b13e887740b69f7cd24e602802599c3fb8e76 /drivers/scsi/libata-core.c
parent5b2ffed906a3ebd4e52a5bbef06b99a517c53e4b (diff)
[PATCH] libata: rename ata_dev_id_[c_]string()
This patch renames ata_dev_id_[c_]string() to ata_id_[c_]string(). All other functions which read data from ATA ID data start with ata_id and those two function names were getting too long. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/scsi/libata-core.c')
-rw-r--r--drivers/scsi/libata-core.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c
index adc5b440c9b..d694b20e81b 100644
--- a/drivers/scsi/libata-core.c
+++ b/drivers/scsi/libata-core.c
@@ -486,7 +486,7 @@ ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
486} 486}
487 487
488/** 488/**
489 * ata_dev_id_string - Convert IDENTIFY DEVICE page into string 489 * ata_id_string - Convert IDENTIFY DEVICE page into string
490 * @id: IDENTIFY DEVICE results we will examine 490 * @id: IDENTIFY DEVICE results we will examine
491 * @s: string into which data is output 491 * @s: string into which data is output
492 * @ofs: offset into identify device page 492 * @ofs: offset into identify device page
@@ -500,8 +500,8 @@ ata_dev_try_classify(struct ata_port *ap, unsigned int device, u8 *r_err)
500 * caller. 500 * caller.
501 */ 501 */
502 502
503void ata_dev_id_string(const u16 *id, unsigned char *s, 503void ata_id_string(const u16 *id, unsigned char *s,
504 unsigned int ofs, unsigned int len) 504 unsigned int ofs, unsigned int len)
505{ 505{
506 unsigned int c; 506 unsigned int c;
507 507
@@ -520,27 +520,27 @@ void ata_dev_id_string(const u16 *id, unsigned char *s,
520} 520}
521 521
522/** 522/**
523 * ata_dev_id_c_string - Convert IDENTIFY DEVICE page into C string 523 * ata_id_c_string - Convert IDENTIFY DEVICE page into C string
524 * @id: IDENTIFY DEVICE results we will examine 524 * @id: IDENTIFY DEVICE results we will examine
525 * @s: string into which data is output 525 * @s: string into which data is output
526 * @ofs: offset into identify device page 526 * @ofs: offset into identify device page
527 * @len: length of string to return. must be an odd number. 527 * @len: length of string to return. must be an odd number.
528 * 528 *
529 * This function is identical to ata_dev_id_string except that it 529 * This function is identical to ata_id_string except that it
530 * trims trailing spaces and terminates the resulting string with 530 * trims trailing spaces and terminates the resulting string with
531 * null. @len must be actual maximum length (even number) + 1. 531 * null. @len must be actual maximum length (even number) + 1.
532 * 532 *
533 * LOCKING: 533 * LOCKING:
534 * caller. 534 * caller.
535 */ 535 */
536void ata_dev_id_c_string(const u16 *id, unsigned char *s, 536void ata_id_c_string(const u16 *id, unsigned char *s,
537 unsigned int ofs, unsigned int len) 537 unsigned int ofs, unsigned int len)
538{ 538{
539 unsigned char *p; 539 unsigned char *p;
540 540
541 WARN_ON(!(len & 1)); 541 WARN_ON(!(len & 1));
542 542
543 ata_dev_id_string(id, s, ofs, len - 1); 543 ata_id_string(id, s, ofs, len - 1);
544 544
545 p = s + strnlen(s, len - 1); 545 p = s + strnlen(s, len - 1);
546 while (p > s && p[-1] == ' ') 546 while (p > s && p[-1] == ' ')
@@ -2315,8 +2315,7 @@ static int ata_dma_blacklisted(const struct ata_device *dev)
2315 unsigned char model_num[41]; 2315 unsigned char model_num[41];
2316 int i; 2316 int i;
2317 2317
2318 ata_dev_id_c_string(dev->id, model_num, ATA_ID_PROD_OFS, 2318 ata_id_c_string(dev->id, model_num, ATA_ID_PROD_OFS, sizeof(model_num));
2319 sizeof(model_num));
2320 2319
2321 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++) 2320 for (i = 0; i < ARRAY_SIZE(ata_dma_blacklist); i++)
2322 if (!strcmp(ata_dma_blacklist[i], model_num)) 2321 if (!strcmp(ata_dma_blacklist[i], model_num))
@@ -4934,8 +4933,8 @@ EXPORT_SYMBOL_GPL(ata_scsi_slave_config);
4934EXPORT_SYMBOL_GPL(ata_scsi_release); 4933EXPORT_SYMBOL_GPL(ata_scsi_release);
4935EXPORT_SYMBOL_GPL(ata_host_intr); 4934EXPORT_SYMBOL_GPL(ata_host_intr);
4936EXPORT_SYMBOL_GPL(ata_dev_classify); 4935EXPORT_SYMBOL_GPL(ata_dev_classify);
4937EXPORT_SYMBOL_GPL(ata_dev_id_string); 4936EXPORT_SYMBOL_GPL(ata_id_string);
4938EXPORT_SYMBOL_GPL(ata_dev_id_c_string); 4937EXPORT_SYMBOL_GPL(ata_id_c_string);
4939EXPORT_SYMBOL_GPL(ata_dev_config); 4938EXPORT_SYMBOL_GPL(ata_dev_config);
4940EXPORT_SYMBOL_GPL(ata_scsi_simulate); 4939EXPORT_SYMBOL_GPL(ata_scsi_simulate);
4941EXPORT_SYMBOL_GPL(ata_eh_qc_complete); 4940EXPORT_SYMBOL_GPL(ata_eh_qc_complete);