Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 148771
b: refs/heads/master
c: 736e6ea
h: refs/heads/master
i:
  148769: b2c86ed
  148767: 7fafd31
v: v3
  • Loading branch information
Sebastian Ott authored and Martin Schwidefsky committed Jun 12, 2009
1 parent f709b55 commit f74662f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 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: 92636b152f3b58e459988934f689619af9e04dbc
refs/heads/master: 736e6ea0bf97ec79521f88704ce8506e5d60d078
8 changes: 7 additions & 1 deletion trunk/drivers/s390/block/dasd_eckd.c
Original file line number Diff line number Diff line change
Expand Up @@ -3277,8 +3277,14 @@ static struct dasd_discipline dasd_eckd_discipline = {
static int __init
dasd_eckd_init(void)
{
int ret;

ASCEBC(dasd_eckd_discipline.ebcname, 4);
return ccw_driver_register(&dasd_eckd_driver);
ret = ccw_driver_register(&dasd_eckd_driver);
if (!ret)
wait_for_device_probe();

return ret;
}

static void __exit
Expand Down
8 changes: 7 additions & 1 deletion trunk/drivers/s390/block/dasd_fba.c
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,14 @@ static struct dasd_discipline dasd_fba_discipline = {
static int __init
dasd_fba_init(void)
{
int ret;

ASCEBC(dasd_fba_discipline.ebcname, 4);
return ccw_driver_register(&dasd_fba_driver);
ret = ccw_driver_register(&dasd_fba_driver);
if (!ret)
wait_for_device_probe();

return ret;
}

static void __exit
Expand Down

0 comments on commit f74662f

Please sign in to comment.