repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
sys
/
dev
/
isa
/
isvio.h
blob
3766f98aa0d02d7d5653825906d0555b01dff1f2
1
/* $NetBSD$ */
2
3
#ifndef _DEV_ISA_ISVIO_H_
4
#define _DEV_ISA_ISVIO_H_
5
6
#include <sys/inttypes.h>
7
#include <sys/ioccom.h>
8
9
#define ISV_WIDTH 512
10
#define ISV_LINES 480
11
12
struct
isv_cmd
{
13
uint8_t
c_cmd
;
14
uint8_t
c_frameno
;
15
};
16
17
#define ISV_CMD_READ 0
18
19
#define ISV_CMD _IOWR(
'x'
, 0, struct isv_cmd)
20
21
#endif
/* _DEV_ISA_ISVIO_H_ */