aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can/janz-ican3.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/can/janz-ican3.c')
-rw-r--r--drivers/net/can/janz-ican3.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/drivers/net/can/janz-ican3.c b/drivers/net/can/janz-ican3.c
index 6e533dcc36c0..f1942cab35f6 100644
--- a/drivers/net/can/janz-ican3.c
+++ b/drivers/net/can/janz-ican3.c
@@ -273,7 +273,7 @@ static inline void ican3_set_page(struct ican3_dev *mod, unsigned int page)
273 */ 273 */
274 274
275/* 275/*
276 * Recieve a message from the ICAN3 "old-style" firmware interface 276 * Receive a message from the ICAN3 "old-style" firmware interface
277 * 277 *
278 * LOCKING: must hold mod->lock 278 * LOCKING: must hold mod->lock
279 * 279 *
@@ -1049,7 +1049,7 @@ static void ican3_handle_inquiry(struct ican3_dev *mod, struct ican3_msg *msg)
1049 complete(&mod->termination_comp); 1049 complete(&mod->termination_comp);
1050 break; 1050 break;
1051 default: 1051 default:
1052 dev_err(mod->dev, "recieved an unknown inquiry response\n"); 1052 dev_err(mod->dev, "received an unknown inquiry response\n");
1053 break; 1053 break;
1054 } 1054 }
1055} 1055}
@@ -1057,7 +1057,7 @@ static void ican3_handle_inquiry(struct ican3_dev *mod, struct ican3_msg *msg)
1057static void ican3_handle_unknown_message(struct ican3_dev *mod, 1057static void ican3_handle_unknown_message(struct ican3_dev *mod,
1058 struct ican3_msg *msg) 1058 struct ican3_msg *msg)
1059{ 1059{
1060 dev_warn(mod->dev, "recieved unknown message: spec 0x%.2x length %d\n", 1060 dev_warn(mod->dev, "received unknown message: spec 0x%.2x length %d\n",
1061 msg->spec, le16_to_cpu(msg->len)); 1061 msg->spec, le16_to_cpu(msg->len));
1062} 1062}
1063 1063
@@ -1112,12 +1112,7 @@ static bool ican3_txok(struct ican3_dev *mod)
1112} 1112}
1113 1113
1114/* 1114/*
1115 * Recieve one CAN frame from the hardware 1115 * Receive one CAN frame from the hardware
1116 *
1117 * This works like the core of a NAPI function, but is intended to be called
1118 * from workqueue context instead. This driver already needs a workqueue to
1119 * process control messages, so we use the workqueue instead of using NAPI.
1120 * This was done to simplify locking.
1121 * 1116 *
1122 * CONTEXT: must be called from user context 1117 * CONTEXT: must be called from user context
1123 */ 1118 */
@@ -1251,7 +1246,6 @@ static irqreturn_t ican3_irq(int irq, void *dev_id)
1251 * Reset an ICAN module to its power-on state 1246 * Reset an ICAN module to its power-on state
1252 * 1247 *
1253 * CONTEXT: no network device registered 1248 * CONTEXT: no network device registered
1254 * LOCKING: work function disabled
1255 */ 1249 */
1256static int ican3_reset_module(struct ican3_dev *mod) 1250static int ican3_reset_module(struct ican3_dev *mod)
1257{ 1251{
@@ -1262,9 +1256,6 @@ static int ican3_reset_module(struct ican3_dev *mod)
1262 /* disable interrupts so no more work is scheduled */ 1256 /* disable interrupts so no more work is scheduled */
1263 iowrite8(1 << mod->num, &mod->ctrl->int_disable); 1257 iowrite8(1 << mod->num, &mod->ctrl->int_disable);
1264 1258
1265 /* flush any pending work */
1266 flush_scheduled_work();
1267
1268 /* the first unallocated page in the DPM is #9 */ 1259 /* the first unallocated page in the DPM is #9 */
1269 mod->free_page = DPM_FREE_START; 1260 mod->free_page = DPM_FREE_START;
1270 1261
@@ -1627,7 +1618,7 @@ static ssize_t ican3_sysfs_set_term(struct device *dev,
1627 return count; 1618 return count;
1628} 1619}
1629 1620
1630static DEVICE_ATTR(termination, S_IWUGO | S_IRUGO, ican3_sysfs_show_term, 1621static DEVICE_ATTR(termination, S_IWUSR | S_IRUGO, ican3_sysfs_show_term,
1631 ican3_sysfs_set_term); 1622 ican3_sysfs_set_term);
1632 1623
1633static struct attribute *ican3_sysfs_attrs[] = { 1624static struct attribute *ican3_sysfs_attrs[] = {