diff options
| author | Michael Brown | 2005-03-08 19:53:11 +0100 |
|---|---|---|
| committer | Michael Brown | 2005-03-08 19:53:11 +0100 |
| commit | 3d6123e69ab879c72ff489afc5bf93ef0b7a94ce (patch) | |
| tree | 9f3277569153a550fa8d81ebd61bd88f266eb8da /src/arch/ia64/include/pal.h | |
| download | ipxe-3d6123e69ab879c72ff489afc5bf93ef0b7a94ce.tar.gz ipxe-3d6123e69ab879c72ff489afc5bf93ef0b7a94ce.tar.xz ipxe-3d6123e69ab879c72ff489afc5bf93ef0b7a94ce.zip | |
Initial revision
Diffstat (limited to 'src/arch/ia64/include/pal.h')
| -rw-r--r-- | src/arch/ia64/include/pal.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/ia64/include/pal.h b/src/arch/ia64/include/pal.h new file mode 100644 index 000000000..6cda19d18 --- /dev/null +++ b/src/arch/ia64/include/pal.h @@ -0,0 +1,11 @@ +#ifndef IA64_PAL_H +#define IA64_PAL_H + +struct pal_freq_ratio { + unsigned long den : 32, num : 32; /* numerator & denominator */ +}; +extern long pal_freq_ratios(struct pal_freq_ratio *proc_ratio, + struct pal_freq_ratio *bus_ratio, struct pal_freq_ratio *itc_ratio); + + +#endif /* IA64_PAL_H */ |
