From 64d771b4fa3c28e41613155652b1fd954e591d17 Mon Sep 17 00:00:00 2001 From: Mike Gerow Date: Fri, 15 May 2015 00:41:13 -0700 Subject: [PATCH] Remove the now unnecessary ioctl from play utility --- userspace/extra/play.c | 1 - 1 file changed, 1 deletion(-) diff --git a/userspace/extra/play.c b/userspace/extra/play.c index c833aaad..bc1319fd 100644 --- a/userspace/extra/play.c +++ b/userspace/extra/play.c @@ -24,7 +24,6 @@ int main(int argc, char * argv[]) { } char buf[0x1000]; - ioctl(spkr, 0xf01, NULL); while (read(song, buf, sizeof(buf))) { write(spkr, buf, sizeof(buf)); }