You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pal.h 291B

1234567891011
  1. #ifndef IA64_PAL_H
  2. #define IA64_PAL_H
  3. struct pal_freq_ratio {
  4. unsigned long den : 32, num : 32; /* numerator & denominator */
  5. };
  6. extern long pal_freq_ratios(struct pal_freq_ratio *proc_ratio,
  7. struct pal_freq_ratio *bus_ratio, struct pal_freq_ratio *itc_ratio);
  8. #endif /* IA64_PAL_H */