diff options
author | Philipp Hortmann <philipp.g.hortmann@gmail.com> | 2023-06-17 15:57:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-06-19 14:54:51 +0200 |
commit | f6689808492d191b534e844a7db4890ca9ac4afe (patch) | |
tree | 10fc079bfd2f8de18ca382df7fc34415b76f19d1 /drivers/staging | |
parent | 0392ac23a943e7eb01a31844a1757e844c1720ce (diff) |
staging: rtl8192e: Rename rtllib_state to rtl_link_state
Rename rtllib_state to rtl_link_state to align with rtlwifi driver and to
increase readability as state is to general.
Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/f21541c16c83356e3cd1e08059847ef9a9eb2ef8.1687007788.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/rtl8192e/rtllib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtllib.h b/drivers/staging/rtl8192e/rtllib.h index 2ebacd6720f1..1aabbe11b484 100644 --- a/drivers/staging/rtl8192e/rtllib.h +++ b/drivers/staging/rtl8192e/rtllib.h @@ -1119,7 +1119,7 @@ struct rtllib_network { struct list_head list; }; -enum rtllib_state { +enum rtl_link_state { /* the card is not linked at all */ RTLLIB_NOLINK = 0, @@ -1489,7 +1489,7 @@ struct rtllib_device { */ struct rtllib_network current_network; - enum rtllib_state state; + enum rtl_link_state state; int short_slot; int mode; /* A, B, G */ |