Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 279737
b: refs/heads/master
c: 6061019
h: refs/heads/master
i:
  279735: 2d82b53
v: v3
  • Loading branch information
Greg Ungerer committed Dec 30, 2011
1 parent 08f9fd9 commit 029809f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 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: 8b38f3c9233c44dcb5ac1c35d4de065e30faccb4
refs/heads/master: 60610192559d430dd24d9b508ae9d8d249709af9
8 changes: 6 additions & 2 deletions trunk/arch/m68k/mm/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ static inline void pushcl040(unsigned long paddr)

void cache_clear (unsigned long paddr, int len)
{
if (CPU_IS_040_OR_060) {
if (CPU_IS_COLDFIRE) {
flush_cf_bcache(0, DCACHE_MAX_ADDR);
} else if (CPU_IS_040_OR_060) {
int tmp;

/*
Expand Down Expand Up @@ -250,7 +252,9 @@ EXPORT_SYMBOL(cache_clear);

void cache_push (unsigned long paddr, int len)
{
if (CPU_IS_040_OR_060) {
if (CPU_IS_COLDFIRE) {
flush_cf_bcache(0, DCACHE_MAX_ADDR);
} else if (CPU_IS_040_OR_060) {
int tmp = PAGE_SIZE;

/*
Expand Down

0 comments on commit 029809f

Please sign in to comment.