Changeset 6136e28b in rtems


Ignore:
Timestamp:
01/23/23 14:26:10 (4 months ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
master
Children:
0340fd9
Parents:
10ee41a8
git-author:
Sebastian Huber <sebastian.huber@…> (01/23/23 14:26:10)
git-committer:
Sebastian Huber <sebastian.huber@…> (01/24/23 08:56:53)
Message:

clockdrv: Add clock driver implementation group

Use standard wording in Clock Driver related files.

Update #3706.

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bsps/arm/raspberrypi/clock/clockdrv.c

    r10ee41a8 r6136e28b  
    22 * @file
    33 *
    4  * @ingroup bsp_clock
     4 * @ingroup RTEMSDriverClockImpl
    55 *
    6  * @brief Raspberry Pi clock support.
     6 * @brief This source file contains the implementation of the BCM2835 Clock
     7 *   Driver.
    78 */
    89
    910/*
    10  * BCM2835 Clock driver
    11  *
    1211 * Copyright (c) 2013 Alan Cudmore
    1312 * Copyright (c) 2016 Pavel Pisa
  • bsps/or1k/generic_or1k/clock/clockdrv.c

    r10ee41a8 r6136e28b  
    22 * @file
    33 *
    4  * @ingroup bsp_clock
     4 * @ingroup RTEMSDriverClockImpl
    55 *
    6  * @brief or1k clock support.
     6 * @brief This source file contains the implementation of the or1k Clock
     7 *   Driver.
    78 */
    89
    910/*
    10  * generic_or1k Clock driver
    11  *
    1211 * COPYRIGHT (c) 2014-2015 Hesham ALMatary <heshamelmatary@gmail.com>
    1312 *
  • bsps/riscv/riscv/clock/clockdrv.c

    r10ee41a8 r6136e28b  
    22 * @file
    33 *
    4  * @ingroup bsp_clock
    5  *
    6  * @brief riscv clock support.
     4 * @ingroup RTEMSDriverClockImpl
     5 *
     6 * @brief This source file contains the implementation of the riscv Clock
     7 *   Driver.
    78 */
    89
  • bsps/shared/dev/clock/clockimpl.h

    r10ee41a8 r6136e28b  
    44 * @file
    55 *
    6  * @ingroup bsp_clock
    7  *
    8  * @brief Clock Tick Device Driver Shell
     6 * @ingroup RTEMSDriverClockImpl
     7 *
     8 * @brief This header file contains the shared Clock Driver implementation.
     9 *
     10 * This header file shall only be included by a particular Clock Driver
     11 * implementation source file.
    912 */
    1013
     
    4548#include <rtems/score/watchdogimpl.h>
    4649
     50/**
     51 * @defgroup RTEMSDriverClockImpl Clock Driver Implementation
     52 *
     53 * @ingroup RTEMSDriverClock
     54 *
     55 * @brief This group contains the Clock Driver implementation.
     56 */
     57
    4758#ifdef Clock_driver_nanoseconds_since_last_tick
    4859#error "Update driver to use the timecounter instead of nanoseconds extension"
    4960#endif
    5061
    51 /**
    52  * @defgroup bsp_clock Clock Support
    53  *
    54  * @ingroup RTEMSBSPsShared
    55  *
    56  * @brief Clock support
    57  *
    58  */
    5962#if CLOCK_DRIVER_USE_FAST_IDLE && CLOCK_DRIVER_ISRS_PER_TICK
    6063#error "Fast Idle PLUS n ISRs per tick is not supported"
  • cpukit/include/rtems/clockdrv.h

    r10ee41a8 r6136e28b  
    66 * @ingroup RTEMSDriverClock
    77 *
    8  * @brief Clock Driver API
    9  *
    10  * This file defines the Clock Driver API.
     8 * @brief This header file defines the Clock Driver API.
    119 */
    1210
     
    5149 * @ingroup RTEMSDeviceDrivers
    5250 *
    53  * @brief The Clock Driver API.
     51 * @brief This group contains the Clock Driver API.
    5452 *
    5553 * @{
Note: See TracChangeset for help on using the changeset viewer.