From: Oliver Hartkopp Date: Thu, 6 Oct 2011 15:21:27 +0000 (+0200) Subject: cls_can: unify description wording X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lisovros/linux_canprio.git/commitdiff_plain/27092b0676fd2ca4e614058736da4cbd2ff9aa46 cls_can: unify description wording Unify description wording for CAN classifier. Signed-off-by: Oliver Hartkopp --- diff --git a/net/sched/Kconfig b/net/sched/Kconfig index 606f64715db..effa40e0d5d 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig @@ -231,11 +231,11 @@ config NET_CLS_BASIC module will be called cls_basic. config NET_CLS_CAN - tristate "Controller Area Network can_id classifier (CAN filter)" + tristate "Controller Area Network classifier (CAN)" select NET_CLS ---help--- Say Y here if you want to be able to classify CAN frames according - to their CAN IDs. + to their CAN identifiers (can_id). To compile this code as a module, choose M here: the module will be called cls_can. diff --git a/net/sched/cls_can.c b/net/sched/cls_can.c index e33c1203be6..0b956c53288 100644 --- a/net/sched/cls_can.c +++ b/net/sched/cls_can.c @@ -1,6 +1,6 @@ /* - * cls_can.c -- CAN classifier. - * Makes decisions accoring to controller area network (CAN) identifiers. + * cls_can.c -- Controller Area Network classifier. + * Makes decisions according to Controller Area Network identifiers (can_id). * * This program is free software; you can distribute it and/or * modify it under the terms of the GNU General Public License @@ -575,5 +575,5 @@ module_init(init_canfltr); module_exit(exit_canfltr); MODULE_LICENSE("GPL"); MODULE_AUTHOR(""); // FIXME -MODULE_DESCRIPTION("Controller Area Network can_id classifier"); +MODULE_DESCRIPTION("Controller Area Network classifier");