[Error ea5004] "..\..\linux-2.6.x\include\asm/mach-common/context.S":35 Syntax Error in :
.macro save_context_with_interrupts
syntax error is at or near text ’save_context_with_interrupts’.
Attempting error recovery by ignoring text until the ’;’
其指向的错误代码为:
/*
* Code to save processor context.
* We even save the register which are preserved by a function call
* - r4, r5, r6, r7, p3, p4, p5
*/
.macro save_context_with_interrupts
……………….
/* Switch to other method of keeping interrupts disabled. */
#ifdef CONFIG_DEBUG_HWERR
r0 = 0x3f;
sti r0;
#else
cli r0;
#endif
………………………
.endm
这里有两个问题,首先是vdsp的汇编器不支持.macro,只能用#define来替代,第二个是在里面出现了#ifdef这样的条件判断,只能将之移到宏定义的外面,修改后的代码为:
#ifdef CONFIG_DEBUG_HWERR
#define save_context_with_interrupts \
……………….. \
/* Switch to other method of keeping interrupts disabled. */ \
r0 = 0x3f; \
sti r0; \
………………. \
//.endm
#else
#define save_context_with_interrupts \
……………………….. \
/* Switch to other method of keeping interrupts disabled. */ \
cli r0; \
……………………….. \
//.endm
#endif // CONFIG_DEBUG_HWERR
其它宏的修改与此类似。
本文来自 280文秘网(https://www.it280.com),转载请保留网址和出处
【uclinux-2008R1.5-RC3(bf561)到VDSP5的移植】相关文章:
2025年外省高中学业水平合格性考试成绩转入江苏认定的通告公布03-23
Vb中控件的自动排列03-23
写未来的作文300字03-23
Our Mother Is the Same 我们的妈妈是一样的03-23
小学父爱的作文600字03-23
汪涵讲述小时候成长经历:鸡毛掸子的故事03-23
关于清明节的英语作文:清明节03-23
盐阜大众报报业集团(盐城)公开招聘《东方生活报》编辑记者的公告 2月25日到3月3日报名03-23
浅析助学贷款对经济发展的正向影响03-23
成长的作文03-23
