x86/platform/iosf_mbi: Source cleanup
- Move the static variables to one place - Fix indentations in the header - Correct comments No functional change. [ tglx: Massaged changelog ] Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: David E . Box <david.e.box@linux.intel.com> Link: http://lkml.kernel.org/r/1436366709-17683-5-git-send-email-andriy.shevchenko@linux.intel.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
b93fb9f6ae
commit
7e1ff15b69
|
@ -31,6 +31,7 @@
|
||||||
#define PCI_DEVICE_ID_BRASWELL 0x2280
|
#define PCI_DEVICE_ID_BRASWELL 0x2280
|
||||||
#define PCI_DEVICE_ID_QUARK_X1000 0x0958
|
#define PCI_DEVICE_ID_QUARK_X1000 0x0958
|
||||||
|
|
||||||
|
static struct pci_dev *mbi_pdev;
|
||||||
static DEFINE_SPINLOCK(iosf_mbi_lock);
|
static DEFINE_SPINLOCK(iosf_mbi_lock);
|
||||||
|
|
||||||
static inline u32 iosf_mbi_form_mcr(u8 op, u8 port, u8 offset)
|
static inline u32 iosf_mbi_form_mcr(u8 op, u8 port, u8 offset)
|
||||||
|
@ -38,8 +39,6 @@ static inline u32 iosf_mbi_form_mcr(u8 op, u8 port, u8 offset)
|
||||||
return (op << 24) | (port << 16) | (offset << 8) | MBI_ENABLE;
|
return (op << 24) | (port << 16) | (offset << 8) | MBI_ENABLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct pci_dev *mbi_pdev; /* one mbi device */
|
|
||||||
|
|
||||||
static int iosf_mbi_pci_read_mdr(u32 mcrx, u32 mcr, u32 *mdr)
|
static int iosf_mbi_pci_read_mdr(u32 mcrx, u32 mcr, u32 *mdr)
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
|
Loading…
Reference in New Issue