diff options
author | Russ Anderson <rja@sgi.com> | 2009-12-17 10:53:25 -0600 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-17 11:33:51 -0800 |
commit | b76365a18f7593c9df32a74bf2b4a39741b67bc6 (patch) | |
tree | b98830bd576337c2f4a074a123834392660c80ae /arch/x86/kernel/apic | |
parent | b8a7f3cd7e8212e5c572178ff3b5a514861036a5 (diff) | |
download | kernel_samsung_smdk4412-b76365a18f7593c9df32a74bf2b4a39741b67bc6.zip kernel_samsung_smdk4412-b76365a18f7593c9df32a74bf2b4a39741b67bc6.tar.gz kernel_samsung_smdk4412-b76365a18f7593c9df32a74bf2b4a39741b67bc6.tar.bz2 |
x86, uv: Add serial number parameter to uv_bios_get_sn_info()
Add system_serial_number to the information returned by
uv_bios_get_sn_info() UV BIOS call.
Signed-off-by: Russ Anderson <rja@sgi.com>
LKML-Reference: <20091217165323.GA30774@sgi.com>
Cc: Jack Steiner <steiner@sgi.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/apic')
-rw-r--r-- | arch/x86/kernel/apic/x2apic_uv_x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index b684bb3..af5d103 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c @@ -5,7 +5,7 @@ * * SGI UV APIC functions (note: not an Intel compatible APIC) * - * Copyright (C) 2007-2008 Silicon Graphics, Inc. All rights reserved. + * Copyright (C) 2007-2009 Silicon Graphics, Inc. All rights reserved. */ #include <linux/cpumask.h> #include <linux/hardirq.h> @@ -627,8 +627,8 @@ void __init uv_system_init(void) } uv_bios_init(); - uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, - &sn_coherency_id, &sn_region_size); + uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, &sn_coherency_id, + &sn_region_size, &system_serial_number); uv_rtc_init(); for_each_present_cpu(cpu) { |