]> git.baikalelectronics.ru Git - kernel.git/commit
x86/earlyprintk: Put CONFIG_PCI-only functions under the #ifdef
authorMark Einon <mark.einon@gmail.com>
Wed, 1 Apr 2015 21:32:04 +0000 (22:32 +0100)
committerIngo Molnar <mingo@kernel.org>
Fri, 3 Apr 2015 13:21:56 +0000 (15:21 +0200)
commit7c7e1c294cafb006178b0ad20a526c4c2a3466f9
tree171c94fb7281576129ebb4f553d190bb3e00b339
parent78d09db0377be9c47150f01939b7c476f3836c8f
x86/earlyprintk: Put CONFIG_PCI-only functions under the #ifdef

Two static functions are only used if CONFIG_PCI is defined, so only
build them if this is the case. Fixes the build warnings:

  arch/x86/kernel/early_printk.c:98:13: warning: ‘mem32_serial_out’ defined but not used [-Wunused-function]
   static void mem32_serial_out(unsigned long addr, int offset, int value)
             ^
  arch/x86/kernel/early_printk.c:105:21: warning: ‘mem32_serial_in’ defined but not used [-Wunused-function]
   static unsigned int mem32_serial_in(unsigned long addr, int offset)
                     ^

Also convert a few related instances of uintXX_t to kernel specific uXX
defines.

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: stuart.r.anderson@intel.com
Link: http://lkml.kernel.org/r/1427923924-22653-1-git-send-email-mark.einon@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/early_printk.c