remove gcc ## errs
Pete Wyckoff <[email protected]>
| Newsgroups | gmane.network.myrinet.general |
|---|---|
| Message-ID | <[email protected]> |
2000-12-05 Pete Wyckoff <[email protected]> * drivers/gm_intsance.c: Remove unnecessary ## concatenation tokens. Newer gcc complain. Index: drivers/gm_instance.c =================================================================== RCS file: /ufs/src/repositories/gm/drivers/gm_instance.c,v retrieving revision 1.209 diff -u -r1.209 gm_instance.c --- drivers/gm_instance.c 2000/12/05 01:08:43 1.209 +++ drivers/gm_instance.c 2000/12/05 19:14:50 @@ -3278,7 +3278,7 @@ /* declare all the MCPs supported by this driver */ #define GM_MCP_DECL(type) \ -extern const char gm_control_program ## type ## []; \ +extern const char gm_control_program ## type []; \ extern const unsigned gm_control_program ## type ## _length; \ extern const unsigned int gm_control_program ## type ## _uncompressed_length @@ -3327,7 +3327,7 @@ GM_MCP_DECL (_64b_l9_8k_newfeatures); #define GM_MCP_PARAM(type) \ - &gm_control_program_64b_##type## [0], \ + &gm_control_program_64b_##type [0], \ &gm_control_program_64b_##type##_length, \ &gm_control_program_64b_##type##_uncompressed_length @@ -3371,7 +3371,7 @@ GM_MCP_DECL (_32b_l9_8k_newfeatures); #define GM_MCP_PARAM(type) \ - &gm_control_program_32b_##type## [0], \ + &gm_control_program_32b_##type [0], \ &gm_control_program_32b_##type##_length, \ &gm_control_program_32b_##type##_uncompressed_length