aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ia64
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2006-06-23 13:15:55 -0600
committerTony Luck <tony.luck@intel.com>2006-07-31 11:49:13 -0700
commit1bf1eba74ec14bc10966a8ddb23bc8deeb91facd (patch)
treebf2c62d0625bebb5516aac808f810cc31b146dbd /include/asm-ia64
parentLinux v2.6.18-rc3 (diff)
downloadlinux-dev-1bf1eba74ec14bc10966a8ddb23bc8deeb91facd.tar.xz
linux-dev-1bf1eba74ec14bc10966a8ddb23bc8deeb91facd.zip
[IA64] Format /proc/pal/*/version_info correctly
/proc/pal/*/version_info is a bit confusing. HP firmware, at least, reports 07.31 instead of 0.7.31. Also, the comment is out of place; it's an internal detail about the implementation of ia64_pal_version. Since the 2.2 revision of the SDM still states that PAL_VERSION can be called in virtual mode, correct the comment to be more accurate. Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64')
-rw-r--r--include/asm-ia64/pal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-ia64/pal.h b/include/asm-ia64/pal.h
index 37e52a2836b0..20a8d618c845 100644
--- a/include/asm-ia64/pal.h
+++ b/include/asm-ia64/pal.h
@@ -1433,7 +1433,12 @@ typedef union pal_version_u {
} pal_version_u_t;
-/* Return PAL version information */
+/*
+ * Return PAL version information. While the documentation states that
+ * PAL_VERSION can be called in either physical or virtual mode, some
+ * implementations only allow physical calls. We don't call it very often,
+ * so the overhead isn't worth eliminating.
+ */
static inline s64
ia64_pal_version (pal_version_u_t *pal_min_version, pal_version_u_t *pal_cur_version)
{