Changeset 3c5006a0 in mainline


Ignore:
Timestamp:
2006-06-20T11:15:34Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1e0a5fc
Parents:
f260256
Message:

Indentation and some improved comments.
Remove forgotten comment from gxemul.sh.

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/drivers/ega.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file
     34 * @brief EGA driver.
    3335 */
    3436
     
    145147}
    146148
    147  /** @}
     149/** @}
    148150 */
    149 
  • arch/ia32/src/drivers/i8254.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file
     34 * @brief       i8254 chip driver.
     35 *
     36 * Low level time functions.
    3337 */
    3438
     
    4852#include <interrupt.h>
    4953
    50 /*
    51  * i8254 chip driver.
    52  * Low level time functions.
    53  */
    54 
    5554#define CLK_PORT1       0x40
    5655#define CLK_PORT4       0x43
    57 
    5856
    5957#define CLK_CONST       1193180
     
    138136}
    139137
    140  /** @}
     138/** @}
    141139 */
    142 
  • arch/ia32/src/drivers/i8259.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file
     34 * @brief PIC driver.
     35 *
     36 * Programmable Interrupt Controller for UP systems based on i8259 chip.
    3337 */
    3438
     
    4044#include <print.h>
    4145#include <interrupt.h>
    42 
    43 /*
    44  * This is the PIC driver.
    45  * Programmable Interrupt Controller for UP systems.
    46  */
    4746
    4847static void pic_spurious(int n, istate_t *istate);
     
    132131}
    133132
    134  /** @}
     133/** @}
    135134 */
    136 
  • arch/ia32/src/drivers/vesa.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup ia32   
     29/** @addtogroup ia32   
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file
     34 * @brief VESA frame buffer driver.
    3335 */
    3436
     
    7173#endif
    7274
    73  /** @}
     75/** @}
    7476 */
    75 
  • arch/mips32/src/exception.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup mips32
     29/** @addtogroup mips32 
    3030 * @{
    3131 */
     
    173173}
    174174
    175  /** @}
     175/** @}
    176176 */
    177177
  • contrib/conf/gxemul.sh

    rf260256 r3c5006a0  
    11#!/bin/sh
    2 # Uspace addresses outside of normal memory (kernel has std. 8 or 16MB)
    3 # we place the pages at 24M
    4         gxemul $@ -E testmips -X image.boot
     2
     3gxemul $@ -E testmips -X image.boot
  • genarch/src/i8042/i8042.c

    rf260256 r3c5006a0  
    2727 */
    2828
    29  /** @addtogroup genarch       
     29/** @addtogroup genarch
    3030 * @{
    3131 */
    32 /** @file
     32/**
     33 * @file        i8042.c
     34 * @brief       i8042 processor driver.
     35 *
     36 * It takes care of low-level keyboard functions.
    3337 */
    3438
     
    4650#include <interrupt.h>
    4751
    48 /**
    49  * i8042 processor driver.
    50  * It takes care of low-level keyboard functions.
    51  */
    52 
    53 /** Keyboard commands. */
     52/* Keyboard commands. */
    5453#define KBD_ENABLE      0xf4
    5554#define KBD_DISABLE     0xf5
     
    576575}
    577576
    578  /** @}
    579  */
    580 
     577/** @}
     578 */
     579
Note: See TracChangeset for help on using the changeset viewer.