hwspinlock updates for v5.7

This marks all hwspinlock driver COMPILE_TESTable and replaces the zero-length
 array in hwspinlock_device with a flexible-array member.
 -----BEGIN PGP SIGNATURE-----
 
 iQJPBAABCAA5FiEEBd4DzF816k8JZtUlCx85Pw2ZrcUFAl6FOlAbHGJqb3JuLmFu
 ZGVyc3NvbkBsaW5hcm8ub3JnAAoJEAsfOT8Nma3Fn7sP/jWPYnr3IwlFnuyg44y5
 J+8qAoSk2XxB8FEmfjjGb9h0LQjVEk7FKEWFG3kievMf5XIvgG5dsnQSnsFrZekf
 G2FhlCEeYTnRGr6DXj1CzHXqa/gdZOH+XrzQZPt1TViN5Pw/ErhBINyS296F3yXI
 xQKHgqwT2NMdGpZ67hAYJnEo1wSzuLXeBA2SFVVRVOeWgc0YE2yS/+WKR+ceKjYQ
 +KsDLTxr6xI1KsGDcGR/4+glbE9XRZEErDiSBiVlWtT/GbYrzw0vOAkESmwPlX7V
 lU3b0VcWhulRKOdbGqdOyiRiGEQS6S2GNTGdC8U0lfrbJeckR8WcnbRcijYDsOYD
 PuTvSxQPOg50r8Yg1N5HCnB3TpTRGpYuwGbeYL4S7JRAeyB0Jbe4tL4bU5jORKE9
 RNhtUQ9ys4kmI6bpgEkTXH555yXAZB1PbIetgjL7PNd4NQDA52jxv3FsYXwEEt5y
 GdWICxsm+W7TTVZuVD+gB2wJcObd6D78dQdPsp6a5tkm8uDaj7ejmkPxh/AQVkl7
 7LFDORJtkp2wvQARdZ7BmE7UZctrpA6fIqhrsgNMbnyP0KLi5gqTTKCvdMUJh+7+
 6qbRUFCKyY4LsMVfRMPlV55a/NHsmXaeuK92Y5f3pJgWNEBxqlWefW529v8RuOaz
 pmX+/SgRM4BmTlkN6UvTK6Z8
 =m+0E
 -----END PGP SIGNATURE-----

Merge tag 'hwlock-v5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc

Pull hwspinlock updates from Bjorn Andersson:
 "This marks all hwspinlock driver COMPILE_TESTable and replaces the
  zero-length array in hwspinlock_device with a flexible-array member"

* tag 'hwlock-v5.7' of git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc:
  hwspinlock: hwspinlock_internal.h: Replace zero-length array with flexible-array member
  hwspinlock: Allow drivers to be built with COMPILE_TEST
This commit is contained in:
Linus Torvalds 2020-04-02 15:45:45 -07:00
commit 11786191e2
2 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@ menuconfig HWSPINLOCK
config HWSPINLOCK_OMAP
tristate "OMAP Hardware Spinlock device"
depends on HWSPINLOCK
depends on ARCH_OMAP4 || SOC_OMAP5 || SOC_DRA7XX || SOC_AM33XX || SOC_AM43XX || ARCH_K3
depends on ARCH_OMAP4 || SOC_OMAP5 || SOC_DRA7XX || SOC_AM33XX || SOC_AM43XX || ARCH_K3 || COMPILE_TEST
help
Say y here to support the OMAP Hardware Spinlock device (firstly
introduced in OMAP4).
@ -19,7 +19,7 @@ config HWSPINLOCK_OMAP
config HWSPINLOCK_QCOM
tristate "Qualcomm Hardware Spinlock device"
depends on HWSPINLOCK
depends on ARCH_QCOM
depends on ARCH_QCOM || COMPILE_TEST
select MFD_SYSCON
help
Say y here to support the Qualcomm Hardware Mutex functionality, which
@ -31,7 +31,7 @@ config HWSPINLOCK_QCOM
config HWSPINLOCK_SIRF
tristate "SIRF Hardware Spinlock device"
depends on HWSPINLOCK
depends on ARCH_SIRF
depends on ARCH_SIRF || COMPILE_TEST
help
Say y here to support the SIRF Hardware Spinlock device, which
provides a synchronisation mechanism for the various processors
@ -42,7 +42,7 @@ config HWSPINLOCK_SIRF
config HWSPINLOCK_SPRD
tristate "SPRD Hardware Spinlock device"
depends on ARCH_SPRD
depends on ARCH_SPRD || COMPILE_TEST
depends on HWSPINLOCK
help
Say y here to support the SPRD Hardware Spinlock device.
@ -51,7 +51,7 @@ config HWSPINLOCK_SPRD
config HWSPINLOCK_STM32
tristate "STM32 Hardware Spinlock device"
depends on MACH_STM32MP157
depends on MACH_STM32MP157 || COMPILE_TEST
depends on HWSPINLOCK
help
Say y here to support the STM32 Hardware Spinlock device.
@ -61,7 +61,7 @@ config HWSPINLOCK_STM32
config HSEM_U8500
tristate "STE Hardware Semaphore functionality"
depends on HWSPINLOCK
depends on ARCH_U8500
depends on ARCH_U8500 || COMPILE_TEST
help
Say y here to support the STE Hardware Semaphore functionality, which
provides a synchronisation mechanism for the various processor on the

View File

@ -56,7 +56,7 @@ struct hwspinlock_device {
const struct hwspinlock_ops *ops;
int base_id;
int num_locks;
struct hwspinlock lock[0];
struct hwspinlock lock[];
};
static inline int hwlock_to_id(struct hwspinlock *hwlock)