added support for EEProms writing/reading.

This commit is contained in:
Steve Passe 1997-03-25 04:11:13 +00:00
parent 42946c8261
commit 0e23e1a104
3 changed files with 24 additions and 6 deletions

View File

@ -79,6 +79,8 @@
* EEProm stuff
*/
struct eeProm {
short offset;
short count;
u_char bytes[ 256 ];
};
@ -112,12 +114,16 @@ struct eeProm {
#define BT848_SCBARS _IOR('x', 43, int) /* set colorbar */
#define BT848_CCBARS _IOR('x', 44, int) /* clear colorbar */
#define BT848_EEPROM _IOR('x', 45, struct eeProm)
#define BT848_SAUDIO _IOW('x', 46, int) /* set audio channel */
#define BT848_GAUDIO _IOR('x', 47, int) /* get audio channel */
#define BT848_SBTSC _IOW('x', 48, int) /* set audio channel */
#define BT848_GSTATUS _IOR('x', 49, unsigned int) /* reap status */
#define BT848_WEEPROM _IOWR('x', 50, struct eeProm)
#define BT848_REEPROM _IOWR('x', 51, struct eeProm)
/*
* XXX: more bad magic,
* we need to fix the METEORGINPUT to return something public

View File

@ -79,6 +79,8 @@
* EEProm stuff
*/
struct eeProm {
short offset;
short count;
u_char bytes[ 256 ];
};
@ -112,12 +114,16 @@ struct eeProm {
#define BT848_SCBARS _IOR('x', 43, int) /* set colorbar */
#define BT848_CCBARS _IOR('x', 44, int) /* clear colorbar */
#define BT848_EEPROM _IOR('x', 45, struct eeProm)
#define BT848_SAUDIO _IOW('x', 46, int) /* set audio channel */
#define BT848_GAUDIO _IOR('x', 47, int) /* get audio channel */
#define BT848_SBTSC _IOW('x', 48, int) /* set audio channel */
#define BT848_GSTATUS _IOR('x', 49, unsigned int) /* reap status */
#define BT848_WEEPROM _IOWR('x', 50, struct eeProm)
#define BT848_REEPROM _IOWR('x', 51, struct eeProm)
/*
* XXX: more bad magic,
* we need to fix the METEORGINPUT to return something public

View File

@ -79,6 +79,8 @@
* EEProm stuff
*/
struct eeProm {
short offset;
short count;
u_char bytes[ 256 ];
};
@ -112,12 +114,16 @@ struct eeProm {
#define BT848_SCBARS _IOR('x', 43, int) /* set colorbar */
#define BT848_CCBARS _IOR('x', 44, int) /* clear colorbar */
#define BT848_EEPROM _IOR('x', 45, struct eeProm)
#define BT848_SAUDIO _IOW('x', 46, int) /* set audio channel */
#define BT848_GAUDIO _IOR('x', 47, int) /* get audio channel */
#define BT848_SBTSC _IOW('x', 48, int) /* set audio channel */
#define BT848_GSTATUS _IOR('x', 49, unsigned int) /* reap status */
#define BT848_WEEPROM _IOWR('x', 50, struct eeProm)
#define BT848_REEPROM _IOWR('x', 51, struct eeProm)
/*
* XXX: more bad magic,
* we need to fix the METEORGINPUT to return something public