diff options
author | Marc Kleine-Budde <mkl@pengutronix.de> | 2017-06-03 20:10:03 +0200 |
---|---|---|
committer | Marc Kleine-Budde <mkl@pengutronix.de> | 2018-01-05 11:12:08 +0100 |
commit | ff847ee47be27621f978921919f035fcd87d6d08 (patch) | |
tree | db569993159747f61bd4233479aebec009f2f696 /include/net | |
parent | adb552c31915415fdb374172085f174f459727ea (diff) | |
download | linux-stable-ff847ee47be27621f978921919f035fcd87d6d08.tar.gz linux-stable-ff847ee47be27621f978921919f035fcd87d6d08.tar.bz2 linux-stable-ff847ee47be27621f978921919f035fcd87d6d08.zip |
can: af_can: give struct holding the CAN per device receive lists a sensible name
This patch adds a "can_" prefix to the "struct dev_rcv_lists" to better
reflect the meaning and improbe code readability.
The conversion is done with:
sed -i \
-e "s/struct dev_rcv_lists/struct can_dev_rcv_lists/g" \
net/can/*.[ch] include/net/netns/can.h
Acked-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netns/can.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/netns/can.h b/include/net/netns/can.h index ecf238b8862c..ca9bd9fba5b5 100644 --- a/include/net/netns/can.h +++ b/include/net/netns/can.h @@ -8,7 +8,7 @@ #include <linux/spinlock.h> -struct dev_rcv_lists; +struct can_dev_rcv_lists; struct s_stats; struct s_pstats; @@ -28,7 +28,7 @@ struct netns_can { #endif /* receive filters subscribed for 'all' CAN devices */ - struct dev_rcv_lists *can_rx_alldev_list; + struct can_dev_rcv_lists *can_rx_alldev_list; spinlock_t can_rcvlists_lock; struct timer_list can_stattimer;/* timer for statistics update */ struct s_stats *can_stats; /* packet statistics */ |