search for: find_pci_device

Displaying 4 results from an estimated 4 matches for "find_pci_device".

2007 Feb 08
1
[PATCH 1/1]: Ethersel must use the pci com32 module instead of builtin pci detection code
From : Erwan Velu <erwan.velu at free.fr> This patch - remove the pci detection code from ethersel - add a find_pci_device() function in the PCI com32 module - make ethersel using the pci com32 module instead of builtin pci detection code Testing and feedback are welcome. Signed-off-by:Erwan Velu <erwan.velu at free.fr> -------------- next part -------------- A non-text attachment was scrubbed... Name: etherse...
2008 Jul 19
0
[PATCH] ethersel: use library functions
...] = 0x0003; /* Run command */ - ireg.ebx.w[0] = OFFS(__com32.cs_bounce); - ireg.es = SEG(__com32.cs_bounce); - __intcall(0x22, &ireg, NULL); - exit(255); /* Shouldn't return */ -} - int main(int argc, char *argv[]) { struct match *list, *match; @@ -225,7 +203,7 @@ match = find_pci_device(&pci_device_list,list); if ( match ) - execute(match->filename); + syslinux_run_command(match->filename); /* On error, return to the command line */ fputs("Error: no recognized network card found!\n", stderr);
2008 Aug 17
1
[PATCH] pci: rename get_module_name_from_pci_ids
...9312b.orig/com32/include/sys/pci.h 2008-08-16 19:39:41.000000000 +0200 +++ syslinux-3.71-12-ga19312b/com32/include/sys/pci.h 2008-08-16 19:40:06.000000000 +0200 @@ -96,5 +96,5 @@ extern int pci_scan(struct pci_bus_list *pci_bus_list, struct pci_device_list *pci_device_list); extern struct match * find_pci_device(struct pci_device_list *pci_device_list, struct match *list); extern void get_name_from_pci_ids(struct pci_device_list *pci_device_list); -extern void get_module_name_from_pci_ids(struct pci_device_list *pci_device_list); +extern void get_module_name_from_pcimap(struct pci_device_list *pci_device_...
2008 Aug 22
1
syslinux-3.71-21-gbd09a6d - build breakage
...9; ethersel.c:(.text+0x27c): undefined reference to `strchr' ethersel.c:(.text+0x290): undefined reference to `strchr' ethersel.c:(.text+0x29f): undefined reference to `strdup' ethersel.c:(.text+0x2c9): undefined reference to `fgets' ethersel.c:(.text+0x2e1): undefined reference to `find_pci_device' ethersel.c:(.text+0x2ed): undefined reference to `syslinux_run_command' ethersel.c:(.text+0x2fc): undefined reference to `fputs' make[2]: *** [ethersel.elf] Fehler 1 - Sebastian