KVM: PPC: Book3S PR: Fix broken select due to misspelling

"Linux Kernel Mailing List" <[email protected]> Sat, 10 Feb 2018 22:00:25 +0000 (UTC)
Newsgroups gmane.linux.kernel.commits.head
Message-ID <[email protected]>
Web:        https://git.kernel.org/torvalds/c/57ea5f161a7de5b1913c212d04f57a175b159fdf
Commit:     57ea5f161a7de5b1913c212d04f57a175b159fdf
Parent:     07ae5389e98c53bb9e9f308fce9c903bc3ee7720
Refname:    refs/heads/master
Author:     Ulf Magnusson <[email protected]>
AuthorDate: Mon Feb 5 02:21:14 2018 +0100
Committer:  Paul Mackerras <[email protected]>
CommitDate: Thu Feb 8 16:42:16 2018 +1100

    KVM: PPC: Book3S PR: Fix broken select due to misspelling
    
    Commit 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code
    on non-pseries platforms") added a reference to the globally undefined
    symbol PPC_SERIES. Looking at the rest of the commit, PPC_PSERIES was
    probably intended.
    
    Change PPC_SERIES to PPC_PSERIES.
    
    Discovered with the
    https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py
    script.
    
    Fixes: 76d837a4c0f9 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code on non-pseries platforms")
    Cc: [email protected] # v4.12+
    Signed-off-by: Ulf Magnusson <[email protected]>
    Signed-off-by: Paul Mackerras <[email protected]>
---
 arch/powerpc/kvm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig
index b12b8eb39c29..648160334abf 100644
--- a/arch/powerpc/kvm/Kconfig
+++ b/arch/powerpc/kvm/Kconfig
@@ -68,7 +68,7 @@ config KVM_BOOK3S_64
 	select KVM_BOOK3S_64_HANDLER
 	select KVM
 	select KVM_BOOK3S_PR_POSSIBLE if !KVM_BOOK3S_HV_POSSIBLE
-	select SPAPR_TCE_IOMMU if IOMMU_SUPPORT && (PPC_SERIES || PPC_POWERNV)
+	select SPAPR_TCE_IOMMU if IOMMU_SUPPORT && (PPC_PSERIES || PPC_POWERNV)
 	---help---
 	  Support running unmodified book3s_64 and book3s_32 guest kernels
 	  in virtual machines on book3s_64 host processors.
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html