projects
/
releases.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GNU Linux-libre 4.9.287-gnu1
[releases.git]
/
arch
/
blackfin
/
include
/
mach-common
/
ports-a.h
1
/*
2
* Port A Masks
3
*/
4
5
#ifndef __BFIN_PERIPHERAL_PORT_A__
6
#define __BFIN_PERIPHERAL_PORT_A__
7
8
#define PA0 (1 << 0)
9
#define PA1 (1 << 1)
10
#define PA2 (1 << 2)
11
#define PA3 (1 << 3)
12
#define PA4 (1 << 4)
13
#define PA5 (1 << 5)
14
#define PA6 (1 << 6)
15
#define PA7 (1 << 7)
16
#define PA8 (1 << 8)
17
#define PA9 (1 << 9)
18
#define PA10 (1 << 10)
19
#define PA11 (1 << 11)
20
#define PA12 (1 << 12)
21
#define PA13 (1 << 13)
22
#define PA14 (1 << 14)
23
#define PA15 (1 << 15)
24
25
#endif