Fix SHARED macros in the non-_MAINOBJECT case. The patch I sent earlier (which was committed) was unfortunately generated from the wrong tree.
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Index: LinuxBIOSv3-fixsharedextern/include/shared.h =================================================================== --- LinuxBIOSv3-fixsharedextern/include/shared.h (Revision 518) +++ LinuxBIOSv3-fixsharedextern/include/shared.h (Arbeitskopie) @@ -43,7 +43,7 @@ ret (*func)(args) attr= stage0_##func #else #define EXTERN(func, ret, attr, args...) \ - ret *func(args) attr + extern ret (*func)(args) attr #endif
#else
Ron? This may fix your remaining initram issues.
Regards, Carl-Daniel
On 27.11.2007 03:18, Carl-Daniel Hailfinger wrote:
Fix SHARED macros in the non-_MAINOBJECT case. The patch I sent earlier (which was committed) was unfortunately generated from the wrong tree.
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Index: LinuxBIOSv3-fixsharedextern/include/shared.h
--- LinuxBIOSv3-fixsharedextern/include/shared.h (Revision 518) +++ LinuxBIOSv3-fixsharedextern/include/shared.h (Arbeitskopie) @@ -43,7 +43,7 @@ ret (*func)(args) attr= stage0_##func #else #define EXTERN(func, ret, attr, args...) \
- ret *func(args) attr
- extern ret (*func)(args) attr
#endif
#else
Acked-by: Ronald G. Minnich rminnich@gmail.com
On 28.11.2007 23:24, ron minnich wrote:
Acked-by: Ronald G. Minnich rminnich@gmail.com
Thanks, r531.
Regards, Carl-Daniel