<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7655.1">
<TITLE>Getting 'bad file number' error writing to device driver</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>
<BR>

<P><FONT SIZE=2>I am trying to write to mydriver but get a 'Bad file number' error.<BR>
<BR>
int fd = open(&quot;/dev/mydriver&quot;,O_RDWR);<BR>
<BR>
this opens successfully as fd is not -1.<BR>
<BR>
ssize_t bytesToWrite = strlen(buf);<BR>
<BR>
value is: bytesToWrite 28<BR>
<BR>
ssize_t bytesWritten = write(fd,buf,bytesToWrite);<BR>
<BR>
value is: bytesWritten -1<BR>
<BR>
__android_log_print(ANDROID_LOG_INFO,__FILE__,&quot;ANIL<BR>
strerror(errno) %s&quot;,&nbsp; strerror(errno));<BR>
<BR>
value is: strerror(errno) Bad file number<BR>
<BR>
Any help appreciated.<BR>
<BR>
Anil</FONT>
</P>

</BODY>
</HTML>