Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 153864
b: refs/heads/master
c: e56e03b
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger committed Jun 23, 2009
1 parent 6214b30 commit 4a2503d
Show file tree
Hide file tree
Showing 37 changed files with 663 additions and 3,072 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 687d680985b1438360a9ba470ece8b57cd205c3b
refs/heads/master: e56e03b0cfeb997a4be9ad874c193824364942e0
1 change: 0 additions & 1 deletion trunk/Documentation/kernel-parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ and is between 256 and 4096 characters. It is defined in the file
nomerge
forcesac
soft
pt [x86, IA64]

io7= [HW] IO7 for Marvel based alpha systems
See comment before marvel_specify_io7 in
Expand Down
22 changes: 22 additions & 0 deletions trunk/arch/blackfin/include/asm/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,26 @@ __clear_user(void *to, unsigned long n)

#define clear_user(to, n) __clear_user(to, n)

/* How to interpret these return values:
* CORE: can be accessed by core load or dma memcpy
* CORE_ONLY: can only be accessed by core load
* DMA: can only be accessed by dma memcpy
* IDMA: can only be accessed by interprocessor dma memcpy (BF561)
* ITEST: can be accessed by isram memcpy or dma memcpy
*/
enum {
BFIN_MEM_ACCESS_CORE = 0,
BFIN_MEM_ACCESS_CORE_ONLY,
BFIN_MEM_ACCESS_DMA,
BFIN_MEM_ACCESS_IDMA,
BFIN_MEM_ACCESS_ITEST,
};
/**
* bfin_mem_access_type() - what kind of memory access is required
* @addr: the address to check
* @size: number of bytes needed
* @return: <0 is error, >=0 is BFIN_MEM_ACCESS_xxx enum (see above)
*/
int bfin_mem_access_type(unsigned long addr, unsigned long size);

#endif /* _BLACKFIN_UACCESS_H */
Loading

0 comments on commit 4a2503d

Please sign in to comment.