Skip to content

Commit

Permalink
[POWERPC] iSeries: set FW_FEATURE_ISERIES earlier
Browse files Browse the repository at this point in the history
This will help in the combined kernel as some really early things depend
on being able to check this.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
  • Loading branch information
Stephen Rothwell committed Sep 25, 2006
1 parent e6e5fee commit ef26a46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/powerpc/platforms/iseries/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -655,9 +655,6 @@ static int __init iseries_probe(void)
if (!of_flat_dt_is_compatible(root, "IBM,iSeries"))
return 0;

powerpc_firmware_features |= FW_FEATURE_ISERIES;
powerpc_firmware_features |= FW_FEATURE_LPAR;

hpte_init_iSeries();

return 1;
Expand Down Expand Up @@ -687,6 +684,9 @@ void * __init iSeries_early_setup(void)
{
unsigned long phys_mem_size;

powerpc_firmware_features |= FW_FEATURE_ISERIES;
powerpc_firmware_features |= FW_FEATURE_LPAR;

iSeries_fixup_klimit();

/*
Expand Down

0 comments on commit ef26a46

Please sign in to comment.