diff options
author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2008-07-14 03:58:47 -0400 |
---|---|---|
committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-07-14 04:02:06 -0400 |
commit | 44a1c19e3b47a7ac596808177ccd250b95f5e688 (patch) | |
tree | 6e6979971a905d143c3bacde998a061aa088b507 /drivers/s390/cio/cio.c | |
parent | c11561897ab57a3c11e0a284ba17795d580589ab (diff) |
[S390] cio: Export some symbols for modular css drivers.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio/cio.c')
-rw-r--r-- | drivers/s390/cio/cio.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/drivers/s390/cio/cio.c b/drivers/s390/cio/cio.c index fdb164f36109..be53f0ee2b1c 100644 --- a/drivers/s390/cio/cio.c +++ b/drivers/s390/cio/cio.c | |||
@@ -387,8 +387,10 @@ cio_modify (struct subchannel *sch) | |||
387 | return ret; | 387 | return ret; |
388 | } | 388 | } |
389 | 389 | ||
390 | /* | 390 | /** |
391 | * Enable subchannel. | 391 | * cio_enable_subchannel - enable a subchannel. |
392 | * @sch: subchannel to be enabled | ||
393 | * @intparm: interruption parameter to set | ||
392 | */ | 394 | */ |
393 | int cio_enable_subchannel(struct subchannel *sch, u32 intparm) | 395 | int cio_enable_subchannel(struct subchannel *sch, u32 intparm) |
394 | { | 396 | { |
@@ -434,12 +436,13 @@ int cio_enable_subchannel(struct subchannel *sch, u32 intparm) | |||
434 | CIO_TRACE_EVENT (2, dbf_txt); | 436 | CIO_TRACE_EVENT (2, dbf_txt); |
435 | return ret; | 437 | return ret; |
436 | } | 438 | } |
439 | EXPORT_SYMBOL_GPL(cio_enable_subchannel); | ||
437 | 440 | ||
438 | /* | 441 | /** |
439 | * Disable subchannel. | 442 | * cio_disable_subchannel - disable a subchannel. |
443 | * @sch: subchannel to disable | ||
440 | */ | 444 | */ |
441 | int | 445 | int cio_disable_subchannel(struct subchannel *sch) |
442 | cio_disable_subchannel (struct subchannel *sch) | ||
443 | { | 446 | { |
444 | char dbf_txt[15]; | 447 | char dbf_txt[15]; |
445 | int ccode; | 448 | int ccode; |
@@ -484,6 +487,7 @@ cio_disable_subchannel (struct subchannel *sch) | |||
484 | CIO_TRACE_EVENT (2, dbf_txt); | 487 | CIO_TRACE_EVENT (2, dbf_txt); |
485 | return ret; | 488 | return ret; |
486 | } | 489 | } |
490 | EXPORT_SYMBOL_GPL(cio_disable_subchannel); | ||
487 | 491 | ||
488 | int cio_create_sch_lock(struct subchannel *sch) | 492 | int cio_create_sch_lock(struct subchannel *sch) |
489 | { | 493 | { |