Re: [PATCH 2/3] ath10k: use size_t for len variables

2017-02-02 Thread Sebastian Gottschall
consider that you changed the length of this datatype on 64 bit systems. unsigned int is always 32 bit, but size_t may be 64 bit too Am 02.02.2017 um 11:19 schrieb Amadeusz Sławiński: cleanup to consolidate type used for len variables Signed-off-by: Amadeusz Sławiński

Re: [PATCH 2/3] ath10k: use size_t for len variables

2017-02-02 Thread Sebastian Gottschall
consider that you changed the length of this datatype on 64 bit systems. unsigned int is always 32 bit, but size_t may be 64 bit too Am 02.02.2017 um 11:19 schrieb Amadeusz Sławiński: cleanup to consolidate type used for len variables Signed-off-by: Amadeusz Sławiński ---

[PATCH 2/3] ath10k: use size_t for len variables

2017-02-02 Thread Amadeusz Sławiński
cleanup to consolidate type used for len variables Signed-off-by: Amadeusz Sławiński --- drivers/net/wireless/ath/ath10k/core.c | 2 +- drivers/net/wireless/ath/ath10k/debug.c| 49 +++--- drivers/net/wireless/ath/ath10k/spectral.c |

[PATCH 2/3] ath10k: use size_t for len variables

2017-02-02 Thread Amadeusz Sławiński
cleanup to consolidate type used for len variables Signed-off-by: Amadeusz Sławiński --- drivers/net/wireless/ath/ath10k/core.c | 2 +- drivers/net/wireless/ath/ath10k/debug.c| 49 +++--- drivers/net/wireless/ath/ath10k/spectral.c | 7 +++-- 3 files changed, 29