tkernel_2/driver/tef_em1d/sysdsk/src/pccard.c | bare source | permlink (0.01 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * T-Kernel 2.0 Software Package 4: * 5: * Copyright 2011 by Ken Sakamura. 6: * This software is distributed under the latest version of T-License 2.x. 7: *---------------------------------------------------------------------- 8: * 9: * Released by T-Engine Forum(http://www.t-engine.org/) at 2011/05/17. 10: * Modified by TRON Forum(http://www.tron.org/) at 2015/06/01. 11: * 12: *---------------------------------------------------------------------- 13: */ 14: 15: 16: /* 17: * pccard.c System disk driver 18: * 19: * PCMCIA card event processing 20: */ 21: 22: #include "sdisk.h" 23: #include "ata.h" 24: 25: /* 26: * no PCMCIA support 27: */ 28: EXPORT ER sdPowerOn(DrvTab *drv, UW req) 29: {return E_OK;} 30: 31: EXPORT void sdPowerOff(DrvTab *drv, UW req) 32: {return;} 33: 34: EXPORT INT sdCardEvent(INT evttyp, CardReq *req, GDI gdi) 35: {return E_NOSPT;} 36: 37: EXPORT ER sdInitCard(DrvTab *drv) 38: {return E_NOSPT;}