-
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.
yaml --- r: 117903 b: refs/heads/master c: 1ba5a17 h: refs/heads/master i: 117901: 9de65cf 117899: 2ee9646 117895: c6587df 117887: 4c4054b v: v3
- Loading branch information
Atsushi Nemoto
authored and
Ralf Baechle
committed
Oct 27, 2008
1 parent
cc77aea
commit 2c5fd7b
Showing
4 changed files
with
85 additions
and
1 deletion.
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: bc89b2bdefa5f56133d0b19a220880d4ada62560 | ||
refs/heads/master: 1ba5a1767416cfa4fa37096e160e764c56e1460a |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef __ASM_MACH_TX49XX_MANGLE_PORT_H | ||
#define __ASM_MACH_TX49XX_MANGLE_PORT_H | ||
|
||
#define __swizzle_addr_b(port) (port) | ||
#define __swizzle_addr_w(port) (port) | ||
#define __swizzle_addr_l(port) (port) | ||
#define __swizzle_addr_q(port) (port) | ||
|
||
#define ioswabb(a, x) (x) | ||
#define __mem_ioswabb(a, x) (x) | ||
#if defined(CONFIG_TOSHIBA_RBTX4939) && \ | ||
(defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)) && \ | ||
defined(__BIG_ENDIAN) | ||
#define NEEDS_TXX9_IOSWABW | ||
extern u16 (*ioswabw)(volatile u16 *a, u16 x); | ||
extern u16 (*__mem_ioswabw)(volatile u16 *a, u16 x); | ||
#else | ||
#define ioswabw(a, x) le16_to_cpu(x) | ||
#define __mem_ioswabw(a, x) (x) | ||
#endif | ||
#define ioswabl(a, x) le32_to_cpu(x) | ||
#define __mem_ioswabl(a, x) (x) | ||
#define ioswabq(a, x) le64_to_cpu(x) | ||
#define __mem_ioswabq(a, x) (x) | ||
|
||
#endif /* __ASM_MACH_TX49XX_MANGLE_PORT_H */ |
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
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