From 88aa0a9a8a23660b6b109b18a7abd7aa2abc9dfd Mon Sep 17 00:00:00 2001 From: bertrik Date: Fri, 18 Jul 2008 22:32:44 +0000 Subject: [PATCH] Make local variable static git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18089 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/ata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/drivers/ata.c b/firmware/drivers/ata.c index d208f9dd7..55e4892b2 100644 --- a/firmware/drivers/ata.c +++ b/firmware/drivers/ata.c @@ -142,7 +142,7 @@ static void ata_lock_unlock(struct ata_lock *l) #endif /* MAX_PHYS_SECTOR_SIZE */ static struct mutex ata_mtx SHAREDBSS_ATTR; -int ata_device; /* device 0 (master) or 1 (slave) */ +static int ata_device; /* device 0 (master) or 1 (slave) */ int ata_spinup_time = 0; #if (CONFIG_LED == LED_REAL) -- 2.11.4.GIT