module-setup: re-fix 99kdumpbase network dependency

In commit a431a7e354 (module-setup: fix 99kdumpbase network dependency),
the statement for OR operation is still wrong.

The OR condition statement should be:  if a || b

Signed-off-by: Pingfan Liu <piliu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
This commit is contained in:
Pingfan Liu 2019-10-22 16:03:57 +08:00 committed by Kairui Song
parent 72ed97683f
commit 882b920c2f
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ depends() {
_dep="$_dep drm"
fi
if is_generic_fence_kdump -o is_pcs_fence_kdump; then
if is_generic_fence_kdump || is_pcs_fence_kdump; then
_dep="$_dep network"
fi