Skip to content

Commit

Permalink
[S390] Remove ipldelay kernel parameter.
Browse files Browse the repository at this point in the history
Using the ipldelay kernel parameter leads to a crash at IPL time.
Since this is broken since a long time it looks like nobody is using
it anymore. So remove it instead of fixing it.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Heiko Carstens committed Jul 14, 2008
1 parent b9732ca commit b4a33ac
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions arch/s390/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,32 +289,6 @@ static int __init early_parse_mem(char *p)
}
early_param("mem", early_parse_mem);

/*
* "ipldelay=XXX[sm]" sets ipl delay in seconds or minutes
*/
static int __init early_parse_ipldelay(char *p)
{
unsigned long delay = 0;

delay = simple_strtoul(p, &p, 0);

switch (*p) {
case 's':
case 'S':
delay *= 1000000;
break;
case 'm':
case 'M':
delay *= 60 * 1000000;
}

/* now wait for the requested amount of time */
udelay(delay);

return 0;
}
early_param("ipldelay", early_parse_ipldelay);

#ifdef CONFIG_S390_SWITCH_AMODE
#ifdef CONFIG_PGSTE
unsigned int switch_amode = 1;
Expand Down

0 comments on commit b4a33ac

Please sign in to comment.