Changeset 3ee8a075 in mainline for kernel/arch/ia32/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/ia32/src/smp/mps.c

    r44bec47 r3ee8a075  
    193193        if (fs->config_type == 0 && fs->configuration_table) {
    194194                if (fs->mpfib2 >> 7) {
    195                         printf("%s: PIC mode not supported\n", __FUNCTION__);
     195                        printf("%s: PIC mode not supported\n", __func__);
    196196                        return;
    197197                }
     
    212212               
    213213        if (ct->signature != CT_SIGNATURE) {
    214                 printf("%s: bad ct->signature\n", __FUNCTION__);
     214                printf("%s: bad ct->signature\n", __func__);
    215215                return 1;
    216216        }
    217217        if (!mps_ct_check()) {
    218                 printf("%s: bad ct checksum\n", __FUNCTION__);
     218                printf("%s: bad ct checksum\n", __func__);
    219219                return 1;
    220220        }
    221221        if (ct->oem_table) {
    222                 printf("%s: ct->oem_table not supported\n", __FUNCTION__);
     222                printf("%s: ct->oem_table not supported\n", __func__);
    223223                return 1;
    224224        }
     
    275275                                 */
    276276                                 
    277                                 printf("%s: ct badness\n", __FUNCTION__);
     277                                printf("%s: ct badness\n", __func__);
    278278                                return 1;
    279279                }
     
    292292         * Not yet implemented.
    293293         */
    294         printf("%s: not supported\n", __FUNCTION__);
     294        printf("%s: not supported\n", __func__);
    295295        return 1;
    296296}
Note: See TracChangeset for help on using the changeset viewer.