Lines Matching defs:err
159 int err;
176 err = mantis_pci_init(mantis);
177 if (err) {
178 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI initialization failed <%d>", err);
182 err = mantis_stream_control(mantis, STREAM_TO_HIF);
183 if (err < 0) {
184 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis stream control failed <%d>", err);
188 err = mantis_i2c_init(mantis);
189 if (err < 0) {
190 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C initialization failed <%d>", err);
194 err = mantis_get_mac(mantis);
195 if (err < 0) {
196 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis MAC address read failed <%d>", err);
200 err = mantis_dma_init(mantis);
201 if (err < 0) {
202 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA initialization failed <%d>", err);
206 err = mantis_dvb_init(mantis);
207 if (err < 0) {
208 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DVB initialization failed <%d>", err);
212 err = mantis_input_init(mantis);
213 if (err < 0) {
215 "ERROR: Mantis DVB initialization failed <%d>", err);
219 err = mantis_uart_init(mantis);
220 if (err < 0) {
221 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis UART initialization failed <%d>", err);
247 return err;