Update of /cvsroot/gc-linux/linux/arch/powerpc/platforms/embedded6xx
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv32143/arch/powerpc/platforms/embedded6xx
Modified Files:
starlet-stm.c
Log Message:
- rename functions: start_ios_* -> starlet_*
Index: starlet-stm.c
===================================================================
RCS file: /cvsroot/gc-linux/linux/arch/powerpc/platforms/embedded6xx/starlet-stm.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- starlet-stm.c 26 Mar 2008 20:14:58 -0000 1.2
+++ starlet-stm.c 2 Jul 2008 20:39:11 -0000 1.3
@@ -42,11 +42,11 @@
size_t len = sizeof(starlet_stm_buf);
int fd;
- fd = starlet_ios_open(dev_stm_immediate, 0);
+ fd = starlet_open(dev_stm_immediate, 0);
if (fd >= 0) {
*buf = value;
- starlet_ios_ioctl(fd, request, buf, len, buf, len);
- starlet_ios_close(fd);
+ starlet_ioctl(fd, request, buf, len, buf, len);
+ starlet_close(fd);
}
}
|