Chameleon

Chameleon Commit Details

Date:2015-05-15 18:52:11 (8 years 10 months ago)
Author:ErmaC
Commit:2681
Parents: 2680
Message:Typo for device inject.
Changes:
M/trunk/i386/libsaio/device_inject.c
M/trunk/i386/libsaio/pci_setup.c

File differences

trunk/i386/libsaio/device_inject.c
425425
426426
427427
428
428
429429
430430
431431
return 1;
}
void set_eth_builtin(pci_dt_t *eth_dev)
void setup_eth_builtin(pci_dt_t *eth_dev)
{
char *devicepath = get_pci_dev_path(eth_dev);
DevPropDevice *device = NULL;
trunk/i386/libsaio/pci_setup.c
1818
1919
2020
21
21
2222
2323
2424
......
5555
5656
5757
58
58
5959
6060
6161
extern bool setup_nvidia_devprop(pci_dt_t *nvda_dev);
extern bool setup_gma_devprop(pci_dt_t *gma_dev);
extern bool setup_hda_devprop(pci_dt_t *hda_dev);
extern void set_eth_builtin(pci_dt_t *eth_dev);
extern void setup_eth_builtin(pci_dt_t *eth_dev);
extern void notify_usb_dev(pci_dt_t *pci_dev);
extern void force_enable_hpet(pci_dt_t *lpc_dev);
DBG("Setup ETHERNET %s enabled\n", do_eth_devprop? "is":"is not");
if (do_eth_devprop)
{
set_eth_builtin(current);
setup_eth_builtin(current);
}
break; // PCI_CLASS_NETWORK_ETHERNET

Archive Download the corresponding diff file

Revision: 2681