Changeset 7f1c620 in mainline for arch/ia32/include/drivers/i8042.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/ia32/include/drivers/i8042.h

    r991779c5 r7f1c620  
    4646#define i8042_STATUS            0x64
    4747
    48 static inline void i8042_data_write(__u8 data)
     48static inline void i8042_data_write(uint8_t data)
    4949{
    5050        outb(i8042_DATA, data);
    5151}
    5252
    53 static inline __u8 i8042_data_read(void)
     53static inline uint8_t i8042_data_read(void)
    5454{
    5555        return inb(i8042_DATA);
    5656}
    5757
    58 static inline __u8 i8042_status_read(void)
     58static inline uint8_t i8042_status_read(void)
    5959{
    6060        return inb(i8042_STATUS);
    6161}
    6262
    63 static inline void i8042_command_write(__u8 command)
     63static inline void i8042_command_write(uint8_t command)
    6464{
    6565        outb(i8042_STATUS, command);
Note: See TracChangeset for help on using the changeset viewer.