Commit 47507516 authored by David S. Miller's avatar David S. Miller

[ATM]: Fix some CPP pasting in ambassador driver.

parent 18c01243
......@@ -290,12 +290,11 @@ static inline void __init show_version (void) {
/********** microcode **********/
#ifdef AMB_NEW_MICROCODE
#define UCODE(x) UCODE1(atmsar12.,x)
#define UCODE(x) UCODE2(atmsar12.x)
#else
#define UCODE(x) UCODE1(atmsar11.,x)
#define UCODE(x) UCODE2(atmsar11.x)
#endif
#define UCODE2(x) #x
#define UCODE1(x,y) UCODE2(x ## y)
static u32 __initdata ucode_start =
#include UCODE(start)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment