-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Greg Ungerer
committed
Mar 24, 2009
1 parent
51c14f5
commit ac04f28
Showing
4 changed files
with
24 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f358cbcd49027d3a58c1f29dbf02a8369bfedcf7 | ||
refs/heads/master: af85fe9e5e618de205ac6944ed9fe45ade0874bf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,25 @@ | ||
#ifdef __uClinux__ | ||
#include "unaligned_no.h" | ||
#ifndef _ASM_M68KNOMMU_UNALIGNED_H | ||
#define _ASM_M68KNOMMU_UNALIGNED_H | ||
|
||
|
||
#ifdef CONFIG_COLDFIRE | ||
#include <linux/unaligned/be_struct.h> | ||
#include <linux/unaligned/le_byteshift.h> | ||
#include <linux/unaligned/generic.h> | ||
|
||
#define get_unaligned __get_unaligned_be | ||
#define put_unaligned __put_unaligned_be | ||
|
||
#else | ||
#include "unaligned_mm.h" | ||
/* | ||
* The m68k can do unaligned accesses itself. | ||
*/ | ||
#include <linux/unaligned/access_ok.h> | ||
#include <linux/unaligned/generic.h> | ||
|
||
#define get_unaligned __get_unaligned_be | ||
#define put_unaligned __put_unaligned_be | ||
|
||
#endif | ||
|
||
#endif /* _ASM_M68KNOMMU_UNALIGNED_H */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.