Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109319
b: refs/heads/master
c: 226a6ec
h: refs/heads/master
i:
  109317: 90993c8
  109315: 7c8d236
  109311: ab708d2
v: v3
  • Loading branch information
Vegard Nossum authored and Bryan Wu committed Aug 28, 2008
1 parent 8827caa commit f09b5c0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 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: a95ca3b2b9dee628ef57df38f0b263e5a4355953
refs/heads/master: 226a6ec31117113a3b775b6b8d63dc4487c2d333
22 changes: 11 additions & 11 deletions trunk/arch/blackfin/mm/blackfin_sram.c
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ EXPORT_SYMBOL(sram_free);

void *l1_data_A_sram_alloc(size_t size)
{
unsigned flags;
unsigned long flags;
void *addr = NULL;

/* add mutex operation */
Expand All @@ -402,7 +402,7 @@ EXPORT_SYMBOL(l1_data_A_sram_alloc);

int l1_data_A_sram_free(const void *addr)
{
unsigned flags;
unsigned long flags;
int ret;

/* add mutex operation */
Expand All @@ -425,7 +425,7 @@ EXPORT_SYMBOL(l1_data_A_sram_free);
void *l1_data_B_sram_alloc(size_t size)
{
#if L1_DATA_B_LENGTH != 0
unsigned flags;
unsigned long flags;
void *addr;

/* add mutex operation */
Expand All @@ -450,7 +450,7 @@ EXPORT_SYMBOL(l1_data_B_sram_alloc);
int l1_data_B_sram_free(const void *addr)
{
#if L1_DATA_B_LENGTH != 0
unsigned flags;
unsigned long flags;
int ret;

/* add mutex operation */
Expand Down Expand Up @@ -504,7 +504,7 @@ EXPORT_SYMBOL(l1_data_sram_free);
void *l1_inst_sram_alloc(size_t size)
{
#if L1_CODE_LENGTH != 0
unsigned flags;
unsigned long flags;
void *addr;

/* add mutex operation */
Expand All @@ -529,7 +529,7 @@ EXPORT_SYMBOL(l1_inst_sram_alloc);
int l1_inst_sram_free(const void *addr)
{
#if L1_CODE_LENGTH != 0
unsigned flags;
unsigned long flags;
int ret;

/* add mutex operation */
Expand All @@ -551,7 +551,7 @@ EXPORT_SYMBOL(l1_inst_sram_free);
/* L1 Scratchpad memory allocate function */
void *l1sram_alloc(size_t size)
{
unsigned flags;
unsigned long flags;
void *addr;

/* add mutex operation */
Expand All @@ -569,7 +569,7 @@ void *l1sram_alloc(size_t size)
/* L1 Scratchpad memory allocate function */
void *l1sram_alloc_max(size_t *psize)
{
unsigned flags;
unsigned long flags;
void *addr;

/* add mutex operation */
Expand All @@ -587,7 +587,7 @@ void *l1sram_alloc_max(size_t *psize)
/* L1 Scratchpad memory free function */
int l1sram_free(const void *addr)
{
unsigned flags;
unsigned long flags;
int ret;

/* add mutex operation */
Expand All @@ -605,7 +605,7 @@ int l1sram_free(const void *addr)
void *l2_sram_alloc(size_t size)
{
#if L2_LENGTH != 0
unsigned flags;
unsigned long flags;
void *addr;

/* add mutex operation */
Expand Down Expand Up @@ -641,7 +641,7 @@ EXPORT_SYMBOL(l2_sram_zalloc);
int l2_sram_free(const void *addr)
{
#if L2_LENGTH != 0
unsigned flags;
unsigned long flags;
int ret;

/* add mutex operation */
Expand Down

0 comments on commit f09b5c0

Please sign in to comment.