summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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