summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2009-11-29 19:20:38 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2009-11-29 19:20:38 +0000
commit93eefbabe386c5b7d373afacff7e88d248e3198e (patch)
tree295d4319e2999886415671965a543df03b363ae7
parent13f08d70fd5ba237ae53aad1de8bb3d613010246 (diff)
downloadrockbox-93eefbabe386c5b7d373afacff7e88d248e3198e.tar.gz
rockbox-93eefbabe386c5b7d373afacff7e88d248e3198e.zip
Suppress unused warnings for functions that haven't been implemented.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23785 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/ipodpatcher/ipodio-posix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/rbutil/ipodpatcher/ipodio-posix.c b/rbutil/ipodpatcher/ipodio-posix.c
index 8398eca566..065aae6303 100644
--- a/rbutil/ipodpatcher/ipodio-posix.c
+++ b/rbutil/ipodpatcher/ipodio-posix.c
@@ -115,6 +115,10 @@ int ipod_scsi_inquiry(struct ipod_t* ipod, int page_code,
115 unsigned char* buf, int bufsize) 115 unsigned char* buf, int bufsize)
116{ 116{
117 /* TODO: Implement for BSD */ 117 /* TODO: Implement for BSD */
118 (void)ipod;
119 (void)page_code;
120 (void)buf;
121 (void)bufsize;
118 return -1; 122 return -1;
119} 123}
120 124
@@ -134,6 +138,10 @@ int ipod_scsi_inquiry(struct ipod_t* ipod, int page_code,
134 unsigned char* buf, int bufsize) 138 unsigned char* buf, int bufsize)
135{ 139{
136 /* TODO: Implement for OS X */ 140 /* TODO: Implement for OS X */
141 (void)ipod;
142 (void)page_code;
143 (void)buf;
144 (void)bufsize;
137 return -1; 145 return -1;
138} 146}
139 147