/* ---------------------------------------------------------------------- */
/*	/usr/src/linux/include/linux/foo_sample.h

					Apr/06/98
*/
/* ---------------------------------------------------------------------- */
#ifndef _FOO_H
#define _FOO_H


#define OK   0

#define NOT_PRESENT 0
#define DEV_READY   1
#define DEV_IN_USE  2


/* This is the FOO card's base address */

#define FOO_IO_BASE_ADDRESS  0x318   /* address of first 8255 */

/* These are the ports available on the card */
#define FOO_PORT_1        (FOO_IO_BASE_ADDRESS)
#define FOO_NUM_PORTS     4 


int foo_init(void);

#endif /* _FOO_H */
/* ---------------------------------------------------------------------- */
