]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
x86: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:35 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:19 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
12 files changed:
arch/x86/cpu/intel_common/itss.c
arch/x86/cpu/intel_common/me_status.c
arch/x86/cpu/quark/smc.c
arch/x86/include/asm/arch-broadwell/pch.h
arch/x86/include/asm/arch-broadwell/pei_data.h
arch/x86/include/asm/bitops.h
arch/x86/include/asm/byteorder.h
arch/x86/include/asm/io.h
arch/x86/include/asm/ist.h
arch/x86/include/asm/me_common.h
arch/x86/include/asm/mpspec.h
arch/x86/include/asm/msr.h

index 6d3184f969f92b6b30716ce2bfb8245c81371d00..168857feb762220fa11428c56961c975fe77e3e9 100644 (file)
@@ -101,7 +101,6 @@ static int restore_polarities(struct udevice *dev)
        reg_start = start / IRQS_PER_IPC;
        reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
 
-
        for (i = reg_start; i < reg_end; i++) {
                u32 mask;
                u16 reg;
index a09bd5029ebb7660eef29de4629b7281b5a3b308..905519abddcaec5836095debb83cb13bfa64abde 100644 (file)
@@ -127,7 +127,6 @@ static const char *const me_progress_policy_values[] = {
        [0x10] = "Required VSCC values for flash parts do not match",
 };
 
-
 /**
  * _intel_me_status() - Check Intel Management Engine status
  *
index a7e92b3f5c160674870c967bd181b1d609ece676..070833fd0e23d3cbe4da0339903bbe887d43abf3 100644 (file)
@@ -245,7 +245,6 @@ void perform_ddr_reset(struct mrc_params *mrc_params)
        LEAVEFN();
 }
 
-
 /*
  * This function performs some initialization on the DDRIO unit.
  * This function is dependent on BOARD_ID, DDR_SPEED, and CHANNEL_ENABLES.
index ecdf6d16f94279c6896370fd1be232510a728b94..b0ccf542b1ab71b02d20fc96181cf69bd265e730 100644 (file)
@@ -30,7 +30,6 @@
 #define TCO1_CNT               0x60
 #define  TCO_TMR_HLT           (1 << 11)
 
-
 /* Device 0:0.0 PCI configuration space */
 
 #define EPBAR          0x40
index 4442beac5e44c5c1a2b6192683a95701f08daaed..296990057873db0b32fd0954375a2a5dc28a2662 100644 (file)
@@ -62,7 +62,6 @@ struct usb3_port_setting {
        uint8_t fixed_eq;
 } __packed;
 
-
 struct pei_data {
        uint32_t pei_version;
 
index 196fcf9d3f64f3198a57c15e46a5aa0a1d917b5d..50cad28186c3e1714d3d2496e56da2a28dc6de2f 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright 1992, Linus Torvalds.
  */
 
-
 /*
  * 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
index a2d1fd8703bd1418f20673f097e3f81ce5781bd6..2f13a1d6498ffc2723ba3529821bd2b778197104 100644 (file)
@@ -5,7 +5,6 @@
 
 #ifdef __GNUC__
 
-
 static __inline__ __u32 ___arch__swab32(__u32 x)
 {
        __asm__("bswap %0" : "=r" (x) : "0" (x));
index 5efb2e1b21e0ef827fe226ce780ec9fb1d960d79..c6d90eb794a0230e0cefbc736d720f84c9d03cd5 100644 (file)
 
 #include <asm/types.h>
 
-
 #ifdef __KERNEL__
 
-
 /*
  * readX/writeX() are used to access memory mapped devices. On some
  * architectures the memory mapped IO stuff needs to be accessed
 #define __FULL_SLOW_DOWN_IO __SLOW_DOWN_IO
 #endif
 
-
 /*
  * Talk about misusing macros..
  */
@@ -152,7 +149,6 @@ static inline void _out##s(unsigned x value, unsigned short port) {
 #define __OUT2(s,s1,s2) \
 __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1"
 
-
 #define __OUT(s,s1,x) \
 __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));}
index 80b8597d54c3d5305530f163ecba956309a10d16..acd9bd3ef2a15995d4658ea1a6b04a770b6b3563 100644 (file)
@@ -7,7 +7,6 @@
  * Copyright 2002 Andy Grover <andrew.grover@intel.com>
  */
 
-
 #include <linux/types.h>
 
 struct ist_info {
index aa478594ec92a8e1788aa95c015b69ae52ef52a6..ed2925b9049ad06e519ca73c167783ed7534ed8e 100644 (file)
@@ -221,7 +221,6 @@ struct me_fw_version {
        u16 recovery_hot_fix;
 } __packed;
 
-
 #define HECI_EOP_STATUS_SUCCESS       0x0
 #define HECI_EOP_PERFORM_GLOBAL_RESET 0x1
 
index a25f8f03a12d7fccffca712267d14d608b390762..3c12e07590c085678691ab1a2ec5f2d3dd04d04d 100644 (file)
@@ -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,
                      int srcbus, int srcbusirq, int destapic, int destlint);
 
-
 /**
  * mp_write_address_space() - Write a system address space entry
  *
index 27764fc56cb9c20cf76b6dbd8ff9725411c5cded..af5f9a11980d176810305b63a9c7147f90b02812 100644 (file)
@@ -245,7 +245,6 @@ do {                                                            \
 
 #endif /* !CONFIG_PARAVIRT */
 
-
 #define checking_wrmsrl(msr, val) wrmsr_safe((msr), (u32)(val),                \
                                             (u32)((val) >> 32))