Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 82a527f0 authored by Geoff Levand's avatar Geoff Levand Committed by Paul Mackerras
Browse files

[POWERPC] ps3: add feature bits



Adds the needed firmware feature bits for the PS3.

Signed-off-by: default avatarGeoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: default avatarArnd Bergmann <arnd.bergmann@de.ibm.com>
parent 1e4ed915
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -58,12 +58,17 @@ enum {
	FW_FEATURE_PSERIES_ALWAYS = 0,
	FW_FEATURE_ISERIES_POSSIBLE = FW_FEATURE_ISERIES | FW_FEATURE_LPAR,
	FW_FEATURE_ISERIES_ALWAYS = FW_FEATURE_ISERIES | FW_FEATURE_LPAR,
	FW_FEATURE_PS3_POSSIBLE = FW_FEATURE_LPAR,
	FW_FEATURE_PS3_ALWAYS = FW_FEATURE_LPAR,
	FW_FEATURE_POSSIBLE =
#ifdef CONFIG_PPC_PSERIES
		FW_FEATURE_PSERIES_POSSIBLE |
#endif
#ifdef CONFIG_PPC_ISERIES
		FW_FEATURE_ISERIES_POSSIBLE |
#endif
#ifdef CONFIG_PS3
		FW_FEATURE_PS3_POSSIBLE |
#endif
		0,
	FW_FEATURE_ALWAYS =
@@ -72,6 +77,9 @@ enum {
#endif
#ifdef CONFIG_PPC_ISERIES
		FW_FEATURE_ISERIES_ALWAYS &
#endif
#ifdef CONFIG_PS3
		FW_FEATURE_PS3_ALWAYS &
#endif
		FW_FEATURE_POSSIBLE,