aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/most
diff options
context:
space:
mode:
authorChristian Gromm <christian.gromm@microchip.com>2019-12-13 13:04:16 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-12-17 13:50:04 +0100
commitb4e37a5e2c3202438f777410481a55de7137d0d4 (patch)
tree492eb74a79ffe3c37bbeaf032113a35b4fd17cb6 /drivers/staging/most
parentstaging: most: rename struct core_component (diff)
downloadlinux-dev-b4e37a5e2c3202438f777410481a55de7137d0d4.tar.xz
linux-dev-b4e37a5e2c3202438f777410481a55de7137d0d4.zip
staging: most: rename enum mbo_status_flags
The data structures of the most.h header file will be exposed to the kernel once the file is moved out of the staging area. This is why the name is prefixed with the string 'most'. Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Link: https://lore.kernel.org/r/1576238662-16512-4-git-send-email-christian.gromm@microchip.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r--drivers/staging/most/most.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/most/most.h b/drivers/staging/most/most.h
index fa6b29fb32f7..d93c6cea3a17 100644
--- a/drivers/staging/most/most.h
+++ b/drivers/staging/most/most.h
@@ -47,7 +47,7 @@ enum most_channel_data_type {
MOST_CH_SYNC = 1 << 5,
};
-enum mbo_status_flags {
+enum most_status_flags {
/* MBO was processed successfully (data was send or received )*/
MBO_SUCCESS = 0,
/* The MBO contains wrong or missing information. */
@@ -184,7 +184,7 @@ struct mbo {
dma_addr_t bus_address;
u16 buffer_length;
u16 processed_length;
- enum mbo_status_flags status;
+ enum most_status_flags status;
void (*complete)(struct mbo *mbo);
};