File: dev_c3600_bay.h

package info (click to toggle)
dynamips 0.2.7-0.2.8RC2-5.1
  • links: PTS, VCS
  • area: non-free
  • in suites: wheezy
  • size: 4,184 kB
  • sloc: ansic: 70,972; makefile: 1,639; perl: 20
file content (23 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Cisco 3600 simulation platform.
 * Copyright (c) 2005,2006 Christophe Fillot (cf@utc.fr)
 *
 * Network Module helper.
 */

#ifndef __DEV_C3600_BAY_H__
#define __DEV_C3600_BAY_H__

#include "pci_dev.h"
#include "dev_c3600.h"

/* NM Information */
struct nm_bay_info {
   int pci_bridge_device;
   int pci_device;
};

/* Get a NM bay information */
struct nm_bay_info *c3600_nm_get_bay_info(u_int chassis,u_int nm_bay);

#endif