-
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.
m68k: use non-mmu version of unaligned.h for all m68k
The non-mmu version is appropriately ifdef'ed to be used "as is" on all m68k varients. So switch to it as the only unaligned.h. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
- Loading branch information
Greg Ungerer
committed
Mar 24, 2009
1 parent
f358cbc
commit af85fe9
Showing
3 changed files
with
23 additions
and
41 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,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.