1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

re-enable port_attach error handling

This commit is contained in:
Ralph Metzler 2017-09-10 23:12:54 +02:00
parent b814cf09e4
commit e817b91860

View File

@ -2118,10 +2118,8 @@ static int ddb_ports_attach(struct ddb *dev)
for (i = 0; i < dev->port_num; i++) {
port = &dev->port[i];
ret = ddb_port_attach(port);
#if 0
if (ret < 0)
break;
#endif
}
return ret;
}