Skip to content

Commit

Permalink
[MIPS] s/__ASSEMBLER__/__ASSEMBLY__/ for clarity sake.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Sep 27, 2006
1 parent e584ade commit 36396f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion include/asm-mips/hazards.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define _ASM_HAZARDS_H


#ifdef __ASSEMBLER__
#ifdef __ASSEMBLY__
#define ASMMACRO(name, code...) .macro name; code; .endm
#else

Expand Down
2 changes: 1 addition & 1 deletion include/asm-mips/mach-excite/excite.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define EXCITE_CPU_EXT_CLOCK 100000000

#if !defined(__ASSEMBLER__)
#if !defined(__ASSEMBLY__)
void __init excite_kgdb_init(void);
void excite_procfs_init(void);
extern unsigned long memsize;
Expand Down
6 changes: 3 additions & 3 deletions include/asm-mips/sibyte/sb1250_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
* Note: you'll need to define uint32_t and uint64_t in your headers.
*/

#if !defined(__ASSEMBLER__)
#if !defined(__ASSEMBLY__)
#define _SB_MAKE64(x) ((uint64_t)(x))
#define _SB_MAKE32(x) ((uint32_t)(x))
#else
Expand Down Expand Up @@ -251,9 +251,9 @@
*/


#if defined(__mips64) && !defined(__ASSEMBLER__)
#if defined(__mips64) && !defined(__ASSEMBLY__)
#define SBWRITECSR(csr,val) *((volatile uint64_t *) PHYS_TO_K1(csr)) = (val)
#define SBREADCSR(csr) (*((volatile uint64_t *) PHYS_TO_K1(csr)))
#endif /* __ASSEMBLER__ */
#endif /* __ASSEMBLY__ */

#endif
2 changes: 1 addition & 1 deletion include/asm-mips/sibyte/sb1250_scd.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
* (For the assembler version, sysrev and dest may be the same register.
* Also, it clobbers AT.)
*/
#ifdef __ASSEMBLER__
#ifdef __ASSEMBLY__
#define SYS_SOC_TYPE(dest, sysrev) \
.set push ; \
.set reorder ; \
Expand Down

0 comments on commit 36396f3

Please sign in to comment.