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) { ...@@ -290,12 +290,11 @@ static inline void __init show_version (void) {
/********** microcode **********/ /********** microcode **********/
#ifdef AMB_NEW_MICROCODE #ifdef AMB_NEW_MICROCODE
#define UCODE(x) UCODE1(atmsar12.,x) #define UCODE(x) UCODE2(atmsar12.x)
#else #else
#define UCODE(x) UCODE1(atmsar11.,x) #define UCODE(x) UCODE2(atmsar11.x)
#endif #endif
#define UCODE2(x) #x #define UCODE2(x) #x
#define UCODE1(x,y) UCODE2(x ## y)
static u32 __initdata ucode_start = static u32 __initdata ucode_start =
#include 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