diff options
author | Jose Fonseca <jrfonseca@users.sourceforge.net> | 2003-06-22 14:00:37 +0000 |
---|---|---|
committer | Jose Fonseca <jrfonseca@users.sourceforge.net> | 2003-06-22 14:00:37 +0000 |
commit | d0a34c7d9601d938a40c36ba6279b2e59494f47a (patch) | |
tree | 16665f39ec70f7c5c1b861ffd888723ca8ecf8cc | |
parent | 577541966bc913fcbb5a41dc07b4be3fe8584052 (diff) |
Remove the redundant \\brief Doxygen tags (missed this one).
-rw-r--r-- | linux-core/drm_pci.c | 16 | ||||
-rw-r--r-- | linux/drm_pci.h | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/linux-core/drm_pci.c b/linux-core/drm_pci.c index 836c7a26..7aefe695 100644 --- a/linux-core/drm_pci.c +++ b/linux-core/drm_pci.c @@ -1,6 +1,6 @@ /** * \file drm_pci.h - * \brief ioctl's to manage PCI memory + * ioctl's to manage PCI memory * * \warning These interfaces aren't stable yet. * @@ -41,22 +41,22 @@ /** - * \brief PCI consistent memory block, for DMA. + * PCI consistent memory block, for DMA. */ typedef struct drm_pci_mem { - struct list_head list; /**< \brief Linux list */ - size_t size; /**< \brief size */ - void *cpuaddr; /**< \brief kernel virtual address */ - dma_addr_t busaddr; /**< \brief associated bus address */ + struct list_head list; /**< Linux list */ + size_t size; /**< size */ + void *cpuaddr; /**< kernel virtual address */ + dma_addr_t busaddr; /**< associated bus address */ } drm_pci_mem_t; #if 0 /** - * \brief PCI data + * PCI data */ typedef struct drm_pci_data { - struct list_head pci_mem; /**< \brief PCI consistent memory */ + struct list_head pci_mem; /**< PCI consistent memory */ } drm_pci_data_t; #endif diff --git a/linux/drm_pci.h b/linux/drm_pci.h index 836c7a26..7aefe695 100644 --- a/linux/drm_pci.h +++ b/linux/drm_pci.h @@ -1,6 +1,6 @@ /** * \file drm_pci.h - * \brief ioctl's to manage PCI memory + * ioctl's to manage PCI memory * * \warning These interfaces aren't stable yet. * @@ -41,22 +41,22 @@ /** - * \brief PCI consistent memory block, for DMA. + * PCI consistent memory block, for DMA. */ typedef struct drm_pci_mem { - struct list_head list; /**< \brief Linux list */ - size_t size; /**< \brief size */ - void *cpuaddr; /**< \brief kernel virtual address */ - dma_addr_t busaddr; /**< \brief associated bus address */ + struct list_head list; /**< Linux list */ + size_t size; /**< size */ + void *cpuaddr; /**< kernel virtual address */ + dma_addr_t busaddr; /**< associated bus address */ } drm_pci_mem_t; #if 0 /** - * \brief PCI data + * PCI data */ typedef struct drm_pci_data { - struct list_head pci_mem; /**< \brief PCI consistent memory */ + struct list_head pci_mem; /**< PCI consistent memory */ } drm_pci_data_t; #endif |