12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _LAMEBUS_LHD_H_
- #define _LAMEBUS_LHD_H_
- #include <device.h>
- #define LHD_SECTSIZE 512
- struct lhd_softc {
-
- void *lh_busdata;
- uint32_t lh_buspos;
- int lh_unit;
-
- void *lh_buf;
- int lh_result;
- struct semaphore *lh_clear;
- struct semaphore *lh_done;
- struct device lh_dev;
- };
- void lhd_irq( void *);
- #endif
|