Changeset 3ee8a075 in mainline for kernel/arch/ia32xen/src


Ignore:
Timestamp:
2007-06-06T20:25:51Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6b781c0
Parents:
44bec47
Message:

Replace gcc-specific FUNCTION with C99 func.
suncc's xregs=no%float can be used only on sparc64.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32xen/src/smp/mps.c

    r44bec47 r3ee8a075  
    195195        if (fs->config_type == 0 && fs->configuration_table) {
    196196                if (fs->mpfib2 >> 7) {
    197                         printf("%s: PIC mode not supported\n", __FUNCTION__);
     197                        printf("%s: PIC mode not supported\n", __func__);
    198198                        return;
    199199                }
     
    214214               
    215215        if (ct->signature != CT_SIGNATURE) {
    216                 printf("%s: bad ct->signature\n", __FUNCTION__);
     216                printf("%s: bad ct->signature\n", __func__);
    217217                return 1;
    218218        }
    219219        if (!mps_ct_check()) {
    220                 printf("%s: bad ct checksum\n", __FUNCTION__);
     220                printf("%s: bad ct checksum\n", __func__);
    221221                return 1;
    222222        }
    223223        if (ct->oem_table) {
    224                 printf("%s: ct->oem_table not supported\n", __FUNCTION__);
     224                printf("%s: ct->oem_table not supported\n", __func__);
    225225                return 1;
    226226        }
     
    277277                                 */
    278278                                 
    279                                 printf("%s: ct badness\n", __FUNCTION__);
     279                                printf("%s: ct badness\n", __func__);
    280280                                return 1;
    281281                }
     
    294294         * Not yet implemented.
    295295         */
    296         printf("%s: not supported\n", __FUNCTION__);
     296        printf("%s: not supported\n", __func__);
    297297        return 1;
    298298}
Note: See TracChangeset for help on using the changeset viewer.