Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/networking.h

1/*
2 * Copyright (c) 2009 Evan Lojewski. All rights reserved.
3 *
4 * Merge into file from module compcept by ErmaC and Marchrius
5 *
6 */
7
8#ifndef __LIBSAIO_NETWORKING_H
9#define __LIBSAIO_NETWORKING_H
10
11void setup_eth_builtin(pci_dt_t *eth_dev);
12void setup_wifi_airport(pci_dt_t *wlan_dev);
13char *get_ethernet_model(uint32_t vendor_id, uint32_t device_id);
14
15struct network_device;
16typedef struct {
17uint16_tvendor_id;
18uint16_tdevice_id;
19char*model;
20} network_device;
21
22#endif /* !__LIBSAIO_NETWORKING_H */
23

Archive Download this file

Revision: 2685