libata-eh.c: local functions should not be exposed globally
authorH Hartley Sweeten <[email protected]>
Thu, 12 Apr 2012 22:40:37 +0000 (15:40 -0700)
committerJeff Garzik <[email protected]>
Wed, 25 Jul 2012 19:17:32 +0000 (15:17 -0400)
The function ata_ering_clear_cb is only referenced in this file and
should be marked static to prevent it from being exposed globally.

This quiets the sparse warning:

warning: symbol 'ata_ering_clear_cb' was not declared. Should it be static?

Signed-off-by: H Hartley Sweeten <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
drivers/ata/libata-eh.c

index 6d53cf9b3b6ea443a1f477314a87ee6c46c292b3..938b6996c38fec1faea6c7d3e70635a076baeef9 100644 (file)
@@ -419,7 +419,7 @@ int ata_ering_map(struct ata_ering *ering,
        return rc;
 }
 
-int ata_ering_clear_cb(struct ata_ering_entry *ent, void *void_arg)
+static int ata_ering_clear_cb(struct ata_ering_entry *ent, void *void_arg)
 {
        ent->eflags |= ATA_EFLAG_OLD_ER;
        return 0;