Re: [PATCH -block] fault-inject: fix build error when FAULT_INJECTION_CONFIGFS=y and CONFIGFS_FS=m

From: Arnd Bergmann
Date: Sun Apr 16 2023 - 06:56:05 EST


On Sun, Apr 16, 2023, at 11:53, Geert Uytterhoeven wrote:
>
> - depends on FAULT_INJECTION && CONFIGFS_FS
> + depends on FAULT_INJECTION && (CONFIGFS_FS=y ||
> CONFIGFS_FS=FAULT_INJECTION)

FAULT_INJECTION is a bool symbol, so the last part is not
needed here.

Arnd