summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-01-10 15:06:42 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-01-10 17:06:47 -0600
commitb697bc6a44a4a41f3025b833847adf96f6052bdd (patch)
treef5b92442b085535f82e63c0c7d3ca71005579fd0 /cpukit/libblock
parentcpukit: Add EOL on files missing EOL at EOF (diff)
downloadrtems-b697bc6a44a4a41f3025b833847adf96f6052bdd.tar.bz2
cpukit: Use Consistent Beginning of Doxygen Group Notation
This is the result of a sed script which converts all uses of @{ into a consistent form.
Diffstat (limited to 'cpukit/libblock')
-rw-r--r--cpukit/libblock/include/rtems/bdbuf.h3
-rw-r--r--cpukit/libblock/include/rtems/bdpart.h6
-rw-r--r--cpukit/libblock/include/rtems/blkdev.h12
-rw-r--r--cpukit/libblock/include/rtems/diskdevs.h12
-rw-r--r--cpukit/libblock/include/rtems/flashdisk.h3
-rw-r--r--cpukit/libblock/include/rtems/media.h14
-rw-r--r--cpukit/libblock/include/rtems/ramdisk.h8
-rw-r--r--cpukit/libblock/include/rtems/sparse-disk.h2
8 files changed, 21 insertions, 39 deletions
diff --git a/cpukit/libblock/include/rtems/bdbuf.h b/cpukit/libblock/include/rtems/bdbuf.h
index 197c20dfcf..cde32d7c4c 100644
--- a/cpukit/libblock/include/rtems/bdbuf.h
+++ b/cpukit/libblock/include/rtems/bdbuf.h
@@ -171,9 +171,8 @@ extern "C" {
* issue with this design. The reallocation of a group may forced recently
* accessed buffers out of the cache when they should not. The design should be
* change to have groups on a LRU list if they have no buffers in use.
- *
- * @{
*/
+/**@{**/
/**
* @brief State of a buffer of the cache.
diff --git a/cpukit/libblock/include/rtems/bdpart.h b/cpukit/libblock/include/rtems/bdpart.h
index 566864d423..c3141e6eda 100644
--- a/cpukit/libblock/include/rtems/bdpart.h
+++ b/cpukit/libblock/include/rtems/bdpart.h
@@ -79,15 +79,13 @@ extern "C" {
* - <a href="http://en.wikipedia.org/wiki/Extended_boot_record">Extended Boot Record</a>
* - <a href="http://en.wikipedia.org/wiki/Cylinder-head-sector">Cylinder Head Sector</a>
* - <a href="http://www.win.tue.nl/~aeb/partitions/partition_types-1.html">Partition Types</a>
- *
- * @{
*/
+/**@{**/
/**
* @name MBR Partition Types and Flags
- *
- * @{
*/
+/**@{**/
#define RTEMS_BDPART_MBR_EMPTY 0x0U
diff --git a/cpukit/libblock/include/rtems/blkdev.h b/cpukit/libblock/include/rtems/blkdev.h
index fb2dcd4f00..f934871412 100644
--- a/cpukit/libblock/include/rtems/blkdev.h
+++ b/cpukit/libblock/include/rtems/blkdev.h
@@ -36,9 +36,8 @@ extern "C" {
* control. This call puts IO @ref rtems_blkdev_request "requests" to the block
* device for asynchronous processing. When a driver executes a request, it
* invokes the request done callback function to finish the request.
- *
- * @{
*/
+/**@{**/
/**
* @brief Block device request type.
@@ -175,9 +174,8 @@ static inline void rtems_blkdev_request_done(
/**
* @name IO Control Request Codes
- *
- * @{
*/
+/**@{**/
#define RTEMS_BLKIO_REQUEST _IOWR('B', 1, rtems_blkdev_request)
#define RTEMS_BLKIO_GETMEDIABLKSIZE _IOR('B', 2, uint32_t)
@@ -253,9 +251,8 @@ static inline int rtems_disk_fd_reset_device_stats(int fd)
/**
* @name Block Device Driver Capabilities
- *
- * @{
*/
+/**@{**/
/**
* @brief Only consecutive multi-sector buffer requests are supported.
@@ -369,9 +366,8 @@ void rtems_blkstats(
* @ingroup rtems_blkdev
*
* Generic disk device operations for standard RTEMS IO drivers.
- *
- * @{
*/
+/**@{**/
/**
* The device driver interface conventions suppose that a driver may contain an
diff --git a/cpukit/libblock/include/rtems/diskdevs.h b/cpukit/libblock/include/rtems/diskdevs.h
index ece629abbf..3940c5710d 100644
--- a/cpukit/libblock/include/rtems/diskdevs.h
+++ b/cpukit/libblock/include/rtems/diskdevs.h
@@ -37,9 +37,8 @@ typedef struct rtems_disk_device rtems_disk_device;
* contain a subset of consecutive disk blocks. The logical disks are used to
* represent the partitions of a disk. The disk devices are accessed via the
* @ref rtems_bdbuf "block device buffer module".
- *
- * @{
*/
+/**@{**/
/**
* @brief Block device block index type.
@@ -276,9 +275,8 @@ struct rtems_disk_device {
/**
* @name Disk Device Data
- *
- * @{
*/
+/**@{**/
static inline dev_t rtems_disk_get_device_identifier(
const rtems_disk_device *dd
@@ -340,9 +338,8 @@ static inline rtems_blkdev_bnum rtems_disk_get_block_count(
/**
* @name Disk Device Maintainance
- *
- * @{
*/
+/**@{**/
/**
* @brief Creates a physical disk with device identifier @a dev.
@@ -443,9 +440,8 @@ rtems_status_code rtems_disk_release(rtems_disk_device *dd);
/**
* @name Disk Management
- *
- * @{
*/
+/**@{**/
/**
* @brief Initializes the disk device management.
diff --git a/cpukit/libblock/include/rtems/flashdisk.h b/cpukit/libblock/include/rtems/flashdisk.h
index 4dcdabe059..5e4f6a8169 100644
--- a/cpukit/libblock/include/rtems/flashdisk.h
+++ b/cpukit/libblock/include/rtems/flashdisk.h
@@ -118,9 +118,8 @@
* }
* close (fd);
* @endcode
- *
- * @{
*/
+/**@{**/
/**
* @brief The base name of the flash disks.
diff --git a/cpukit/libblock/include/rtems/media.h b/cpukit/libblock/include/rtems/media.h
index 038357c16d..d1132224f7 100644
--- a/cpukit/libblock/include/rtems/media.h
+++ b/cpukit/libblock/include/rtems/media.h
@@ -40,8 +40,8 @@ extern "C" {
* actions. For example a disk attach will lead to inspection of the partition
* table and mounted file systems. Clients can register listeners to react to
* events.
- * @{
*/
+/**@{**/
#define RTEMS_MEDIA_MOUNT_BASE "/media"
@@ -312,9 +312,8 @@ typedef rtems_status_code (*rtems_media_worker)(
/**
* @name Base
- *
- * @{
*/
+/**@{**/
/**
* @brief Initializes the media manager.
@@ -377,9 +376,8 @@ rtems_status_code rtems_media_post_event(
/**
* @name Server
- *
- * @{
*/
+/**@{**/
/**
* @brief Initializes the media manager and media server.
@@ -452,9 +450,8 @@ static inline rtems_status_code rtems_media_server_disk_detach(
/**
* @name Path Construction
- *
- * @{
*/
+/**@{**/
/**
* @brief Creates a new path as "prefix/name-major".
@@ -490,9 +487,8 @@ char *rtems_media_append_minor(
/**
* @name Support
- *
- * @{
*/
+/**@{**/
/**
* @brief Returns the device identifier for the device located at
diff --git a/cpukit/libblock/include/rtems/ramdisk.h b/cpukit/libblock/include/rtems/ramdisk.h
index aaa940b7c4..727efddbe8 100644
--- a/cpukit/libblock/include/rtems/ramdisk.h
+++ b/cpukit/libblock/include/rtems/ramdisk.h
@@ -25,14 +25,13 @@ extern "C" {
*
* @ingroup rtems_blkdev
*
- * @{
*/
+/**@{**/
/**
* @name Static Configuration
- *
- * @{
*/
+/**@{**/
/**
* @brief RAM disk configuration table entry.
@@ -95,9 +94,8 @@ rtems_device_driver ramdisk_initialize(
/**
* @name Runtime Configuration
- *
- * @{
*/
+/**@{**/
/**
* @brief RAM disk descriptor.
diff --git a/cpukit/libblock/include/rtems/sparse-disk.h b/cpukit/libblock/include/rtems/sparse-disk.h
index 3dc806b407..3f2e41c01a 100644
--- a/cpukit/libblock/include/rtems/sparse-disk.h
+++ b/cpukit/libblock/include/rtems/sparse-disk.h
@@ -37,8 +37,8 @@ extern "C" {
*
* @ingroup rtems_blkdev
*
- * @{
*/
+/**@{**/
typedef struct {
rtems_blkdev_bnum block;