summaryrefslogtreecommitdiff
path: root/tools/quick_dump/chipset.i
blob: 16c49328bc0e4e96626083046e914bf06f72a256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%module chipset 
%{
#include "intel_chipset.h"
extern int is_sandybridge(unsigned short pciid);
extern int is_ivybridge(unsigned short pciid);
extern int is_valleyview(unsigned short pciid);
%}

%include "intel_chipset.h"
extern int is_sandybridge(unsigned short pciid);
extern int is_ivybridge(unsigned short pciid);
extern int is_valleyview(unsigned short pciid);