diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-11-07 23:19:06 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-11-07 23:19:06 +0000 |
| commit | a8c1c203058a1f66ef73791f7a6b834f16db266e (patch) | |
| tree | 6808fe91032847f9d0032956708f2705499de0f4 /apps/plugin.h | |
| parent | 77372d12189c70cb810a7e88bc2ee7a56f64646c (diff) | |
| download | rockbox-a8c1c203058a1f66ef73791f7a6b834f16db266e.zip rockbox-a8c1c203058a1f66ef73791f7a6b834f16db266e.tar.gz rockbox-a8c1c203058a1f66ef73791f7a6b834f16db266e.tar.bz2 rockbox-a8c1c203058a1f66ef73791f7a6b834f16db266e.tar.xz | |
Removed unused ata_standby(), changed return type of ata_sleep() to void, removed misleading comment from ata.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7782 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 2fac5ee..d19c696 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -271,7 +271,7 @@ struct plugin_api { int (*read_line)(int fd, char* buffer, int buffer_size); bool (*settings_parseline)(char* line, char** name, char** value); #ifndef SIMULATOR - int (*ata_sleep)(void); + void (*ata_sleep)(void); #endif /* dir */ |