Changeset acac2ef in mainline for uspace/drv/char/ps2mouse/main.c


Ignore:
Timestamp:
2011-12-27T11:53:42Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
edb3cf2
Parents:
da2d75b
Message:

ps2mouse: Doxygen.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ps2mouse/main.c

    rda2d75b racac2ef  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28 /** @addtogroup drvkbd
     28/** @addtogroup drvmouse
    2929 * @{
    3030 */
    3131/** @file
    32  * @brief XT keyboard driver
     32 * @brief ps/2 mouse driver
    3333 */
    3434
     
    4747
    4848static int mouse_add(ddf_dev_t *device);
    49 
     49/*----------------------------------------------------------------------------*/
     50/** DDF driver ops. */
    5051static driver_ops_t mouse_driver_ops = {
    5152        .dev_add = mouse_add,
    5253};
    53 
     54/*----------------------------------------------------------------------------*/
     55/** DDF driver structure. */
    5456static driver_t mouse_driver = {
    5557        .name = NAME,
    5658        .driver_ops = &mouse_driver_ops
    5759};
    58 
     60/*----------------------------------------------------------------------------*/
    5961/** Initialize global driver structures (NONE).
    6062 *
     
    7173        return ddf_driver_main(&mouse_driver);
    7274}
    73 
    74 /** Initialize a new ddf driver instance of the driver
     75/*----------------------------------------------------------------------------*/
     76/** Initialize a new ddf driver instance
    7577 *
    7678 * @param[in] device DDF instance of the device to initialize.
Note: See TracChangeset for help on using the changeset viewer.