Re: [PATCH 1/2] net-ath9k_htc: Delete an unnecessary variable initialisation in ath9k_hif_usb_rx_stream()

2016-01-01 Thread Oleksij Rempel
> { > struct sk_buff *nskb, *skb_pool[MAX_PKT_NUM_IN_TRANSFER]; > - int index = 0, i = 0, len = skb->len; > + int index = 0, i, len = skb->len; > int rx_remain_len, rx_pkt_len; > u16 pool_index = 0; > u8 *ptr; > Reviewed-by: Oleksij Rempel <li...@rempel-privat.de> -- Regards, Oleksij signature.asc Description: OpenPGP digital signature

Re: [PATCH 2/2] net-ath9k_htc: Replace a variable initialisation by an assignment in ath9k_htc_set_channel()

2016-01-01 Thread Oleksij Rempel
caldata = >caldata; > - > + caldata = fastcc ? NULL : >caldata; > ret = ath9k_hw_reset(ah, hchan, caldata, fastcc); > if (ret) { > ath_err(common, > Reviewed-by: Oleksij Rempel <li...@rempel-privat.de> -- Regards, Oleksij signature.asc Description: OpenPGP digital signature

Re: ath9k_htc - Division by zero in kernel (as well as firmware panic)

2017-06-08 Thread Oleksij Rempel
Am 08.06.2017 um 00:39 schrieb Tobias Diedrich: > Oleksij Rempel wrote: >> Am 07.06.2017 um 02:12 schrieb Tobias Diedrich: >>> Oleksij Rempel wrote: >>>> Yes, this is "normal" problem. The firmware has no error handler for PCI >>>> bus related e

Re: ath9k_htc - Division by zero in kernel (as well as firmware panic)

2017-06-03 Thread Oleksij Rempel
Hi, Am 03.06.2017 um 00:02 schrieb Nathan Royce: > ODroid XU4 > > $ uname -a > Linux computer 4.12.0-rc3-dirty #1 SMP Wed May 31 15:02:05 CDT 2017 > armv7l GNU/Linux > > $ lsusb > ... > Bus 001 Device 002: ID 2109:2813 VIA Labs, Inc. > Bus 001 Device 010: ID 0cf3:7015 Qualcomm Atheros

Re: ath9k_htc - Division by zero in kernel (as well as firmware panic)

2017-06-07 Thread Oleksij Rempel
Am 07.06.2017 um 02:12 schrieb Tobias Diedrich: > Oleksij Rempel wrote: >> Yes, this is "normal" problem. The firmware has no error handler for PCI >> bus related exceptions. So if we filed to read PCI bus first time, we >> have choice to Ooops and stall or Ooop

[PATCH v1 5/5] can: add support of SAE J1939 protocol.

2018-10-08 Thread Oleksij Rempel
Signed-off-by: Robin van der Gracht Signed-off-by: Oleksij Rempel --- Documentation/networking/j1939.txt | 468 ++ MAINTAINERS| 10 + include/linux/can/can-ml.h |3 + include/uapi/linux/can/j1939.h | 83 ++ net/can/Kconfig|2

[PATCH v1 2/5] can: introduce REQUIRED_SIZE macro

2018-10-08 Thread Oleksij Rempel
From: Kurt Van Dijck The size of this structure will be increased with J1939 support. To stay binary compatible, the REQUIRED_SIZE macro is introduced for existing CAN protocols. Signed-off-by: Kurt Van Dijck Signed-off-by: Oleksij Rempel --- include/linux/can/core.h | 8 net/can

[PATCH v1 4/5] can: extend sockaddr_can to include j1939 members

2018-10-08 Thread Oleksij Rempel
This patch prepares struct sockaddr_can for SAE J1939. Signed-off-by: Kurt Van Dijck Signed-off-by: Oleksij Rempel --- include/uapi/linux/can.h | 17 + 1 file changed, 17 insertions(+) diff --git a/include/uapi/linux/can.h b/include/uapi/linux/can.h index 06d92d6be6e6

[PATCH v1 1/5] mailmap: update email address

2018-10-08 Thread Oleksij Rempel
From: Kurt Van Dijck This commit replaces my company's email address with a stable private address. Signed-off-by: Kurt Van Dijck Signed-off-by: Marc Kleine-Budde Signed-off-by: Oleksij Rempel --- .mailmap | 1 + 1 file changed, 1 insertion(+) diff --git a/.mailmap b/.mailmap index

[PATCH v1 3/5] can: add socket type for CAN_J1939

2018-10-08 Thread Oleksij Rempel
This patch is a preparation for SAE J1939 and adds CAN_J1939 socket type. Signed-off-by: Kurt Van Dijck Signed-off-by: Oleksij Rempel --- include/uapi/linux/can.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/uapi/linux/can.h b/include/uapi/linux/can.h index

[PATCH v1 0/5] can: add SAE J1939 protocol

2018-10-08 Thread Oleksij Rempel
email address can: introduce REQUIRED_SIZE macro Oleksij Rempel (2): can: add socket type for CAN_J1939 can: extend sockaddr_can to include j1939 members The j1939 authors (1): can: add support of SAE J1939 protocol. .mailmap |1 + Documentation/networking