Home | History | Annotate | Download | only in ebus

Lines Matching defs:Identify

68 /* Structure returned by the Identify command (see CFlash specs)
314 "failed to identify card, errno=%d.\n", error);
787 * Start a command on the ACE, such as read or identify.
845 * Identify the (size of the) CompactFlash card inserted in the slot.
850 PCFLASH_IDENTIFY Identify = &sc->sc_params;
854 DBGME(DEBUG_FUNCS, printf("Sysace::Identify %p\n", sc));
888 sc->sc_dr->STATUS, sizeof(*Identify)));
906 for (i = 0; i < sizeof(*Identify); i += 4) {
934 memcpy(((char *)Identify) + i,
955 Identify->ModelNumber,
956 Identify->SerialNumber));
957 if (Identify->Signature == CFLASH_SIGNATURE) {
961 Identify->ModelNumber,
962 Identify->SerialNumber));
965 (Identify->SectorsPerCard[0] << 16)
966 | Identify->SectorsPerCard[1];
975 Identify->Signature,
988 printf("Sysace::Identify failed,"