Update of /cvsroot/mpio/mpio/libmpio/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25026/libmpio/src
Modified Files:
mpio.c
Log Message:
fixed stupid bugs
Index: mpio.c
===================================================================
RCS file: /cvsroot/mpio/mpio/libmpio/src/mpio.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** mpio.c 30 May 2004 16:28:52 -0000 1.16
--- mpio.c 31 May 2004 09:28:50 -0000 1.17
***************
*** 252,257 ****
/* these players have a MMC/SD slot */
! if ((m->model != MPIO_MODEL_VP_02) &&
! (m->model != MPIO_MODEL_FL100)) {
debugn(0, "Trying to detect external MMC. This is work in progress. BEWARE!!\n");
debugn(0, "Please report your findings to mpi...@li...\n");
--- 252,257 ----
/* these players have a MMC/SD slot */
! if ((m->model == MPIO_MODEL_VP_02) ||
! (m->model == MPIO_MODEL_FL100)) {
debugn(0, "Trying to detect external MMC. This is work in progress. BEWARE!!\n");
debugn(0, "Please report your findings to mpi...@li...\n");
***************
*** 259,263 ****
hexdumpn(0, m->version, 64);
! mpio_mmc_detect_memory(m, sm);
if (sm->size) {
--- 259,263 ----
hexdumpn(0, m->version, 64);
! mpio_mmc_detect_memory(m, MPIO_EXTERNAL_MEM);
if (sm->size) {
|