Home | History | Annotate | Download | only in bios_reader

Lines Matching refs:err

37 #include <err.h>
53 int err, fd;
58 err = pci_system_init();
59 if (err != 0) {
60 fprintf(stderr, "Couldn't initialize PCI system: %s\n", strerror(err));
69 err = pci_device_probe(dev);
70 if (err != 0) {
71 fprintf(stderr, "Couldn't probe graphics card: %s\n", strerror(err));
82 err = pci_device_read_rom(dev, bios);
83 if (err != 0) {
85 strerror(err));