diff options
author | 2019-12-14 12:49:20 -0800 | |
---|---|---|
committer | 2019-12-14 12:49:20 -0800 | |
commit | f61cf8decb37e7244247129163bf69b45dd3b1cd (patch) | |
tree | 55722b8d29cfbbe9ea5b41c8a6c5c35e5bd69f32 /lib | |
parent | Merge tag 'driver-core-5.5-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core (diff) | |
parent | binder: fix incorrect calculation for num_valid (diff) | |
download | wireguard-linux-f61cf8decb37e7244247129163bf69b45dd3b1cd.tar.xz wireguard-linux-f61cf8decb37e7244247129163bf69b45dd3b1cd.zip |
Merge tag 'char-misc-5.5-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc driver fixes from Greg KH:
"Here are six small fixes for some reported char/misc driver issues:
- fix build warnings with new 'awk' with the raid6 code
- four interconnect driver bugfixes
- binder fix for reported problem
All of these except the binder fix have been in linux-next with no
reported issues. The binder fix is "new" but Todd says it is good as
he has tested it :)"
* tag 'char-misc-5.5-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
binder: fix incorrect calculation for num_valid
interconnect: qcom: msm8974: Walk the list safely on node removal
interconnect: qcom: qcs404: Walk the list safely on node removal
interconnect: qcom: sdm845: Walk the list safely on node removal
interconnect: qcom: Fix Kconfig indentation
lib: raid6: fix awk build warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/raid6/unroll.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/raid6/unroll.awk b/lib/raid6/unroll.awk index c6aa03631df8..0809805a7e23 100644 --- a/lib/raid6/unroll.awk +++ b/lib/raid6/unroll.awk @@ -13,7 +13,7 @@ BEGIN { for (i = 0; i < rep; ++i) { tmp = $0 gsub(/\$\$/, i, tmp) - gsub(/\$\#/, n, tmp) + gsub(/\$#/, n, tmp) gsub(/\$\*/, "$", tmp) print tmp } |