diff options
| author | Roger Hardiman <roger@FreeBSD.org> | 2000-10-27 07:07:24 +0000 |
|---|---|---|
| committer | Roger Hardiman <roger@FreeBSD.org> | 2000-10-27 07:07:24 +0000 |
| commit | 5d4152e3e8b9afeeab4850d795b7cce450e3fb98 (patch) | |
| tree | dbdf42570fd4a97678de91adf9d3bbe53ae238d5 | |
| parent | c7b0985126dc28e068175dee63663158039edb7b (diff) | |
Notes
| -rw-r--r-- | sys/alpha/include/ioctl_bt848.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/alpha/include/ioctl_bt848.h b/sys/alpha/include/ioctl_bt848.h index 4b6a8fbf85b6..b9dba5adc4c7 100644 --- a/sys/alpha/include/ioctl_bt848.h +++ b/sys/alpha/include/ioctl_bt848.h @@ -149,6 +149,16 @@ struct eeProm { */ #define BT848_I2CWR _IOWR('x', 57, u_long) /* i2c read-write */ +struct bktr_msp_control { + unsigned char function; + unsigned int address; + unsigned int data; +}; + +#define BT848_MSP_RESET _IO('x', 76) /* MSP chip reset */ +#define BT848_MSP_READ _IOWR('x', 77, struct bktr_msp_control) /* MSP chip reset */ +#define BT848_MSP_WRITE _IOWR('x', 78, struct bktr_msp_control) /* MSP chip reset */ + /* Support for radio tuner */ #define RADIO_SETMODE _IOW('x', 58, unsigned int) /* set radio modes */ #define RADIO_GETMODE _IOR('x', 58, unsigned char) /* get radio modes */ |
