This series implements some minor bug fixes or improvements. The first patch removes an apparently unnecessary restriction, which results in an error on a 32-bit ARM build.
The second makes a definition used for SDM845 match what is used in the downstream code. The third just ensures two netdev pointers are only non-null when valid. The fourth simplifies a little code, knowing that a called function never returns an error. The fifth and sixth just remove some empty/place holder functions. And the last patch fixes a comment, makes a function private, and removes an unnecessary double-negation of a Boolean variable. This patch produces a warning from checkpatch, indicating that a pair of parentheses is unnecessary. I agree with that advice, but it conflicts with a suggestion from the compiler. I left the "problem" in place to avoid the compiler warning. -Alex Alex Elder (7): net: ipa: relax pool entry size requirement net: ipa: update sequence type for modem TX endpoint net: ipa: only set endpoint netdev pointer when in use net: ipa: ipa_stop() does not return an error net: ipa: get rid of empty IPA functions net: ipa: get rid of empty GSI functions net: ipa: three small fixes drivers/net/ipa/gsi.c | 54 ++++--------------------------- drivers/net/ipa/gsi_trans.c | 4 +-- drivers/net/ipa/ipa_data-v3.5.1.c | 1 + drivers/net/ipa/ipa_endpoint.c | 6 ++-- drivers/net/ipa/ipa_endpoint.h | 2 -- drivers/net/ipa/ipa_main.c | 29 ++++++----------- drivers/net/ipa/ipa_mem.c | 9 ++---- drivers/net/ipa/ipa_mem.h | 5 ++- drivers/net/ipa/ipa_modem.c | 34 ++++++++----------- drivers/net/ipa/ipa_resource.c | 8 +---- drivers/net/ipa/ipa_resource.h | 8 ++--- drivers/net/ipa/ipa_table.c | 26 ++------------- drivers/net/ipa/ipa_table.h | 16 +++------ 13 files changed, 49 insertions(+), 153 deletions(-) -- 2.27.0