dect
/
linux-2.6
Archived
13
0
Fork 0

[S390] dcss: fix build bug.

Fix this compile bug:

  CC      drivers/s390/block/dcssblk.o
drivers/s390/block/dcssblk.c: In function 'dcssblk_add_store':
drivers/s390/block/dcssblk.c:387: error: implicit declaration of function 'dcssblk_get_segment_by_name'
drivers/s390/block/dcssblk.c:389: error: label 'release_gd' used but not defined
make[1]: *** [drivers/s390/block/dcssblk.o] Error 1
make: *** [drivers/s390/block/] Error 2

Cc: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Heiko Carstens 2008-08-25 18:13:27 +02:00 committed by Martin Schwidefsky
parent 5453c1a575
commit dbe13d9981
1 changed files with 3 additions and 2 deletions

View File

@ -384,9 +384,10 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char
* get minor, add to list
*/
down_write(&dcssblk_devices_sem);
if (dcssblk_get_segment_by_name(local_buf)) {
if (dcssblk_get_device_by_name(local_buf)) {
up_write(&dcssblk_devices_sem);
rc = -EEXIST;
goto release_gd;
goto unload_seg;
}
rc = dcssblk_assign_free_minor(dev_info);
if (rc) {