Changeset 06e1e95 in mainline for kernel/arch/ia32/include/drivers


Ignore:
Timestamp:
2006-09-14T17:09:21Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1d1f5d3
Parents:
e5ecc02
Message:

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

Location:
kernel/arch/ia32/include/drivers
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/include/drivers/ega.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __EGA_H__
    36 #define __EGA_H__
     35#ifndef KERN_ia32_EGA_H_
     36#define KERN_ia32_EGA_H_
    3737
    3838#define VIDEORAM        0xb8000
     
    4545#endif
    4646
    47  /** @}
     47/** @}
    4848 */
    49 
  • kernel/arch/ia32/include/drivers/i8042.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3737 */
    3838
    39 #ifndef __ia32_I8042_H__
    40 #define __ia32_I8042_H__
     39#ifndef KERN_ia32_I8042_H_
     40#define KERN_ia32_I8042_H_
    4141
    4242#include <arch/asm.h>
     
    6868#endif
    6969
    70  /** @}
     70/** @}
    7171 */
    72 
  • kernel/arch/ia32/include/drivers/i8254.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __I8254_H__
    36 #define __I8254_H__
     35#ifndef KERN_ia32_I8254_H_
     36#define KERN_ia32_I8254_H_
    3737
    3838#include <arch/types.h>
     
    4444#endif
    4545
    46  /** @}
     46/** @}
    4747 */
    48 
  • kernel/arch/ia32/include/drivers/i8259.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __I8259_H__
    36 #define __I8259_H__
     35#ifndef KERN_ia32_I8259_H_
     36#define KERN_ia32_I8259_H_
    3737
    3838#include <arch/types.h>
     
    5454#endif
    5555
    56  /** @}
     56/** @}
    5757 */
    58 
  • kernel/arch/ia32/include/drivers/vesa.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __VESA_H__
    36 #define __VESA_H__
     35#ifndef KERN_ia32_VESA_H_
     36#define KERN_ia32_VESA_H_
    3737
    3838extern int vesa_present(void);
     
    4141#endif
    4242
    43  /** @}
     43/** @}
    4444 */
    45 
Note: See TracChangeset for help on using the changeset viewer.