Skip to content

Commit 9af4821

Browse files
bulwahnjgross1
authored andcommitted
xen: Fix config option reference in XEN_PRIVCMD definition
Commit 2fae6bb ("xen/privcmd: Add new syscall to get gsi from dev") adds a weak reverse dependency to the config XEN_PRIVCMD definition, referring to CONFIG_XEN_PCIDEV_BACKEND. In Kconfig files, one refers to config options without the CONFIG prefix, though. So in its current form, this does not create the reverse dependency as intended, but is an attribute with no effect. Refer to the intended config option XEN_PCIDEV_BACKEND in the XEN_PRIVCMD definition. Fixes: 2fae6bb ("xen/privcmd: Add new syscall to get gsi from dev") Signed-off-by: Lukas Bulwahn <[email protected]> Reviewed-by: Juergen Gross <[email protected]> Message-ID: <[email protected]> Signed-off-by: Juergen Gross <[email protected]>
1 parent 9852d85 commit 9af4821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/xen/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ config XEN_SCSI_BACKEND
261261
config XEN_PRIVCMD
262262
tristate "Xen hypercall passthrough driver"
263263
depends on XEN
264-
imply CONFIG_XEN_PCIDEV_BACKEND
264+
imply XEN_PCIDEV_BACKEND
265265
default m
266266
help
267267
The hypercall passthrough driver allows privileged user programs to

0 commit comments

Comments
 (0)