aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can/ti_hecc.c
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2012-07-16 06:58:31 -0400
committerMarc Kleine-Budde <mkl@pengutronix.de>2012-07-20 06:31:05 -0400
commit194b9a4cb91713ddb60c9f98f7212f6d8cb8e05f (patch)
tree5d32819f28dac1346f827a35afe6f626b8dd807c /drivers/net/can/ti_hecc.c
parent769162e38b91e1d300752e666260fa6c7b203fbc (diff)
can: mark bittiming_const pointer in struct can_priv as const
This patch marks the bittiming_const pointer as in the struct can_pric as "const". This allows us to mark the struct can_bittiming_const in the CAN drivers as "const", too. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'drivers/net/can/ti_hecc.c')
-rw-r--r--drivers/net/can/ti_hecc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c
index 4accd7ec6954..527dbcf95335 100644
--- a/drivers/net/can/ti_hecc.c
+++ b/drivers/net/can/ti_hecc.c
@@ -196,7 +196,7 @@ MODULE_VERSION(HECC_MODULE_VERSION);
196#define HECC_CANGIM_SIL BIT(2) /* system interrupts to int line 1 */ 196#define HECC_CANGIM_SIL BIT(2) /* system interrupts to int line 1 */
197 197
198/* CAN Bittiming constants as per HECC specs */ 198/* CAN Bittiming constants as per HECC specs */
199static struct can_bittiming_const ti_hecc_bittiming_const = { 199static const struct can_bittiming_const ti_hecc_bittiming_const = {
200 .name = DRV_NAME, 200 .name = DRV_NAME,
201 .tseg1_min = 1, 201 .tseg1_min = 1,
202 .tseg1_max = 16, 202 .tseg1_max = 16,