Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98950
b: refs/heads/master
c: b4a33ac
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens committed Jul 14, 2008
1 parent 805735e commit 9a2019e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 27 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b9732ca1cb2c18129d2f984b8de02db141b7b830
refs/heads/master: b4a33acb690525c5ca37e177f5cd26c62d3ef976
26 changes: 0 additions & 26 deletions trunk/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 9a2019e

Please sign in to comment.