repo.or.cz
/
linux-2.6
/
cjktty.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
modules: Fix up build when CONFIG_MODULE_UNLOAD=n.
[linux-2.6/cjktty.git]
/
include
/
sound
/
l3.h
blob
423a08f0f1b0677b77bd3a81ba50bfb5b3968816
1
#ifndef _L3_H_
2
#define _L3_H_ 1
3
4
struct
l3_pins
{
5
void
(*
setdat
)(
int
);
6
void
(*
setclk
)(
int
);
7
void
(*
setmode
)(
int
);
8
int
data_hold
;
9
int
data_setup
;
10
int
clock_high
;
11
int
mode_hold
;
12
int
mode
;
13
int
mode_setup
;
14
};
15
16
int
l3_write
(
struct
l3_pins
*
adap
,
u8 addr
,
u8
*
data
,
int
len
);
17
18
#endif