Changeset 7f1c620 in mainline for arch/ia64/include/faddr.h


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/include/faddr.h

    r991779c5 r7f1c620  
    2727 */
    2828
    29  /** @addtogroup ia64   
     29/** @addtogroup ia64   
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __ia64_FADDR_H__
    36 #define __ia64_FADDR_H__
     35#ifndef KERN_ia64_FADDR_H_
     36#define KERN_ia64_FADDR_H_
    3737
    3838#include <arch/types.h>
     
    4646 *
    4747 */
    48 #define FADDR(f)         (*((__address *)(f)));
     48#define FADDR(f)         (*((uintptr_t *)(f)));
    4949
    5050#endif
    5151
    52  /** @}
     52/** @}
    5353 */
    54 
Note: See TracChangeset for help on using the changeset viewer.