mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 23:41:50 +00:00
x86: Remove duplicate newlines
Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
This commit is contained in:
parent
b51be8ebcb
commit
62b668ba13
12 changed files with 0 additions and 15 deletions
|
@ -101,7 +101,6 @@ static int restore_polarities(struct udevice *dev)
|
||||||
reg_start = start / IRQS_PER_IPC;
|
reg_start = start / IRQS_PER_IPC;
|
||||||
reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
|
reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
|
||||||
|
|
||||||
|
|
||||||
for (i = reg_start; i < reg_end; i++) {
|
for (i = reg_start; i < reg_end; i++) {
|
||||||
u32 mask;
|
u32 mask;
|
||||||
u16 reg;
|
u16 reg;
|
||||||
|
|
|
@ -127,7 +127,6 @@ static const char *const me_progress_policy_values[] = {
|
||||||
[0x10] = "Required VSCC values for flash parts do not match",
|
[0x10] = "Required VSCC values for flash parts do not match",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* _intel_me_status() - Check Intel Management Engine status
|
* _intel_me_status() - Check Intel Management Engine status
|
||||||
*
|
*
|
||||||
|
|
|
@ -245,7 +245,6 @@ void perform_ddr_reset(struct mrc_params *mrc_params)
|
||||||
LEAVEFN();
|
LEAVEFN();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This function performs some initialization on the DDRIO unit.
|
* This function performs some initialization on the DDRIO unit.
|
||||||
* This function is dependent on BOARD_ID, DDR_SPEED, and CHANNEL_ENABLES.
|
* This function is dependent on BOARD_ID, DDR_SPEED, and CHANNEL_ENABLES.
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
#define TCO1_CNT 0x60
|
#define TCO1_CNT 0x60
|
||||||
#define TCO_TMR_HLT (1 << 11)
|
#define TCO_TMR_HLT (1 << 11)
|
||||||
|
|
||||||
|
|
||||||
/* Device 0:0.0 PCI configuration space */
|
/* Device 0:0.0 PCI configuration space */
|
||||||
|
|
||||||
#define EPBAR 0x40
|
#define EPBAR 0x40
|
||||||
|
|
|
@ -62,7 +62,6 @@ struct usb3_port_setting {
|
||||||
uint8_t fixed_eq;
|
uint8_t fixed_eq;
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
|
|
||||||
struct pei_data {
|
struct pei_data {
|
||||||
uint32_t pei_version;
|
uint32_t pei_version;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
* Copyright 1992, Linus Torvalds.
|
* Copyright 1992, Linus Torvalds.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* These have to be done with inline assembly: that way the bit-setting
|
* These have to be done with inline assembly: that way the bit-setting
|
||||||
* is guaranteed to be atomic. All bit operations return 0 if the bit
|
* is guaranteed to be atomic. All bit operations return 0 if the bit
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
|
||||||
|
|
||||||
static __inline__ __u32 ___arch__swab32(__u32 x)
|
static __inline__ __u32 ___arch__swab32(__u32 x)
|
||||||
{
|
{
|
||||||
__asm__("bswap %0" : "=r" (x) : "0" (x));
|
__asm__("bswap %0" : "=r" (x) : "0" (x));
|
||||||
|
|
|
@ -46,10 +46,8 @@
|
||||||
|
|
||||||
#include <asm/types.h>
|
#include <asm/types.h>
|
||||||
|
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* readX/writeX() are used to access memory mapped devices. On some
|
* readX/writeX() are used to access memory mapped devices. On some
|
||||||
* architectures the memory mapped IO stuff needs to be accessed
|
* architectures the memory mapped IO stuff needs to be accessed
|
||||||
|
@ -142,7 +140,6 @@
|
||||||
#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO
|
#define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Talk about misusing macros..
|
* Talk about misusing macros..
|
||||||
*/
|
*/
|
||||||
|
@ -152,7 +149,6 @@ static inline void _out##s(unsigned x value, unsigned short port) {
|
||||||
#define __OUT2(s,s1,s2) \
|
#define __OUT2(s,s1,s2) \
|
||||||
__asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
|
__asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
|
||||||
|
|
||||||
|
|
||||||
#define __OUT(s,s1,x) \
|
#define __OUT(s,s1,x) \
|
||||||
__OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
|
__OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "Nd" (port)); } \
|
||||||
__OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));}
|
__OUT1(s##_p,x) __OUT2(s,s1,"w") __FULL_SLOW_DOWN_IO : : "a" (value), "Nd" (port));}
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
* Copyright 2002 Andy Grover <andrew.grover@intel.com>
|
* Copyright 2002 Andy Grover <andrew.grover@intel.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
struct ist_info {
|
struct ist_info {
|
||||||
|
|
|
@ -221,7 +221,6 @@ struct me_fw_version {
|
||||||
u16 recovery_hot_fix;
|
u16 recovery_hot_fix;
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
|
|
||||||
#define HECI_EOP_STATUS_SUCCESS 0x0
|
#define HECI_EOP_STATUS_SUCCESS 0x0
|
||||||
#define HECI_EOP_PERFORM_GLOBAL_RESET 0x1
|
#define HECI_EOP_PERFORM_GLOBAL_RESET 0x1
|
||||||
|
|
||||||
|
|
|
@ -374,7 +374,6 @@ void mp_write_pci_intsrc(struct mp_config_table *mc, int irqtype,
|
||||||
void mp_write_lintsrc(struct mp_config_table *mc, int irqtype, int irqflag,
|
void mp_write_lintsrc(struct mp_config_table *mc, int irqtype, int irqflag,
|
||||||
int srcbus, int srcbusirq, int destapic, int destlint);
|
int srcbus, int srcbusirq, int destapic, int destlint);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* mp_write_address_space() - Write a system address space entry
|
* mp_write_address_space() - Write a system address space entry
|
||||||
*
|
*
|
||||||
|
|
|
@ -245,7 +245,6 @@ do { \
|
||||||
|
|
||||||
#endif /* !CONFIG_PARAVIRT */
|
#endif /* !CONFIG_PARAVIRT */
|
||||||
|
|
||||||
|
|
||||||
#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
|
#define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val), \
|
||||||
(u32)((val) >> 32))
|
(u32)((val) >> 32))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue