]> git.baikalelectronics.ru Git - uboot.git/commitdiff
WS cleanup: remove trailing white space
authorWolfgang Denk <wd@denx.de>
Mon, 27 Sep 2021 15:42:38 +0000 (17:42 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 30 Sep 2021 12:08:56 +0000 (08:08 -0400)
Signed-off-by: Wolfgang Denk <wd@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
32 files changed:
Licenses/lgpl-2.0.txt
Makefile
arch/arm/include/asm/arch-am33xx/cpu.h
arch/arm/lib/lib1funcs.S
arch/xtensa/include/asm/arch-de212/core.h
board/freescale/common/sys_eeprom.c
board/qualcomm/dragonboard820c/dragonboard820c.c
board/warp7/README
common/spl/spl_mmc.c
doc/README.distro
doc/imx/common/imx6.txt
drivers/misc/atsha204a-i2c.c
drivers/mtd/mtdcore.c
drivers/mtd/nand/raw/nand_base.c
drivers/mtd/nand/raw/nand_util.c
drivers/mtd/ubi/build.c
drivers/net/phy/meson-gxl.c
drivers/ram/stm32_sdram.c
drivers/reset/reset-meson.c
drivers/serial/serial_msm.c
drivers/usb/dwc3/dwc3-meson-gxl.c
drivers/usb/musb-new/musb_regs.h
drivers/usb/musb-new/musb_uboot.c
drivers/usb/musb/musb_hcd.c
drivers/video/anx9804.c
drivers/video/tdo-tl070wsh30.c
include/configs/imx6-engicam.h
include/linux/mtd/rawnand.h
include/linux/serial_reg.h
scripts/kconfig/gconf.c
tools/asn1_compiler.c
tools/patman/test/test01.txt

index 5bc8fb2c8f757e34a0d8f4644f589d57609e213f..12735e6c21959f1c5db16aac184480f94697ef7f 100644 (file)
@@ -133,7 +133,7 @@ such a program is covered only if its contents constitute a work based
 on the Library (independent of the use of the Library in a tool for
 writing it).  Whether that is true depends on what the Library does
 and what the program that uses the Library does.
-  
+
   1. You may copy and distribute verbatim copies of the Library's
 complete source code as you receive it, in any medium, provided that
 you conspicuously and appropriately publish on each copy an
index cf9466cec913cee9ab53b560f19e17c057033743..4392df6280d38a94b964c7bbd58ca5606c99ab5b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -327,14 +327,14 @@ os_x_before       = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
        $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
 
 os_x_after = $(shell if [ $(DARWIN_MAJOR_VERSION) -ge $(1) -a \
-       $(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)  
+       $(DARWIN_MINOR_VERSION) -ge $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
 
 # Snow Leopards build environment has no longer restrictions as described above
 HOSTCC       = $(call os_x_before, 10, 5, "cc", "gcc")
 KBUILD_HOSTCFLAGS  += $(call os_x_before, 10, 4, "-traditional-cpp")
 KBUILD_HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
 
-# macOS Mojave (10.14.X) 
+# macOS Mojave (10.14.X)
 # Undefined symbols for architecture x86_64: "_PyArg_ParseTuple"
 KBUILD_HOSTLDFLAGS += $(call os_x_after, 10, 14, "-lpython -dynamclib", "")
 endif
index 79081de700b486f43f172d85b536fd3200b6f854..b33e6f7fd1bdafab3b70e8dd7d5f45048bd45131 100644 (file)
@@ -408,7 +408,7 @@ struct cm_dpll {
        unsigned int resv1;
        unsigned int clktimer2clk;      /* offset 0x04 */
        unsigned int resv2[11];
-       unsigned int clkselmacclk;      /* offset 0x34 */ 
+       unsigned int clkselmacclk;      /* offset 0x34 */
 };
 #endif /* CONFIG_AM43XX */
 
index 0798d098afe8c0509ec2721a901b71f3b157fe73..700eee5fbbe0c4c8db2d533ffe15a7cb7748f83b 100644 (file)
@@ -34,7 +34,7 @@
        mov     \divisor, \divisor, lsl \result
        mov     \curbit, \curbit, lsl \result
        mov     \result, #0
-       
+
 #else
 
        @ Initially shift the divisor left 3 bits if possible,
@@ -48,7 +48,7 @@
 
        @ Unless the divisor is very big, shift it up in multiples of
        @ four bits, since this is the amount of unwinding in the main
-       @ division loop.  Continue shifting until the divisor is 
+       @ division loop.  Continue shifting until the divisor is
        @ larger than the dividend.
 1:     cmp     \divisor, #0x10000000
        cmplo   \divisor, \dividend
 
        @ Unless the divisor is very big, shift it up in multiples of
        @ four bits, since this is the amount of unwinding in the main
-       @ division loop.  Continue shifting until the divisor is 
+       @ division loop.  Continue shifting until the divisor is
        @ larger than the dividend.
 1:     cmp     \divisor, #0x10000000
        cmplo   \divisor, \dividend
index 443fd459ca67c2b1a798ef9ba98794e20a72dd84..327140629144731eb8858215244fe8558fed85a3 100644 (file)
@@ -89,7 +89,7 @@
 #define XCHAL_HAVE_HIFI3_VFPU          0       /* HiFi3 Audio Engine VFPU option */
 #define XCHAL_HAVE_HIFI2               0       /* HiFi2 Audio Engine pkg */
 #define XCHAL_HAVE_HIFI2EP             0       /* HiFi2EP */
-#define XCHAL_HAVE_HIFI_MINI           0       
+#define XCHAL_HAVE_HIFI_MINI           0
 
 
 #define XCHAL_HAVE_VECTORFPU2005       0       /* vector or user floating-point pkg */
index 35df8ba389ed0b817eda7cb82b086bf71e9b412a..431f8caeb03496e6ff4cbc3034186d9be045181b 100644 (file)
@@ -62,7 +62,7 @@ static struct __attribute__ ((__packed__)) eeprom {
        u8 mac_count;     /* 0x40        Number of MAC addresses */
        u8 mac_flag;      /* 0x41        MAC table flags */
        u8 mac[MAX_NUM_PORTS][6];     /* 0x42 - 0xa1 MAC addresses */
-       u8 res_2[90];     /* 0xa2 - 0xfb Reserved */    
+       u8 res_2[90];     /* 0xa2 - 0xfb Reserved */
        u32 crc;          /* 0xfc - 0xff CRC32 checksum */
 #endif
 } e;
index 4ccb1a07508bf1023a13c336f3850f44497f5cf4..f9cc762a25cd5ba7a90e18e201710d65efb23941 100644 (file)
@@ -73,7 +73,7 @@ static void sdhci_power_init(void)
 
        /* drive strength configs for sdhc pins */
        const struct tlmm_cfg hdrv[] = {
-       
+
                { SDC1_CLK_HDRV,  TLMM_CUR_VAL_16MA, TLMM_HDRV_MASK, },
                { SDC1_CMD_HDRV,  TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK, },
                { SDC1_DATA_HDRV, TLMM_CUR_VAL_10MA, TLMM_HDRV_MASK, },
@@ -81,14 +81,14 @@ static void sdhci_power_init(void)
 
        /* pull configs for sdhc pins */
        const struct tlmm_cfg pull[] = {
-       
+
                { SDC1_CLK_PULL,  TLMM_NO_PULL, TLMM_PULL_MASK, },
                { SDC1_CMD_PULL,  TLMM_PULL_UP, TLMM_PULL_MASK, },
                { SDC1_DATA_PULL, TLMM_PULL_UP, TLMM_PULL_MASK, },
        };
 
        const struct tlmm_cfg rclk[] = {
-       
+
                { SDC1_RCLK_PULL, TLMM_PULL_DOWN, TLMM_PULL_MASK,},
        };
 
index 579bb2de38a9d40fd5972193d4722b765b0b512c..05cdfd00275a6f26d7c36aa429ce340ed35b70d5 100644 (file)
@@ -19,7 +19,7 @@ $ make
 
 This will generate the U-Boot binary called u-boot-dtb.imx.
 
-Put warp7 board in USB download mode: 
+Put warp7 board in USB download mode:
 
 Remove the CPU board from the base board then put switch 2 in the upper
 position
index 212a2b0992891521e5494d61995002d9b48211fc..d52f8a3eefe6221cca7b3acfa22beab21f127d30 100644 (file)
@@ -194,7 +194,7 @@ static int mmc_load_image_raw_partition(struct spl_image_info *spl_image,
                err = part_get_info(mmc_get_blk_desc(mmc), type_part, &info);
                if (err)
                        continue;
-               if (info.sys_ind == 
+               if (info.sys_ind ==
                        CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION_TYPE) {
                        partition = type_part;
                        break;
index c4f041ca7124ae6260713c3c19a4d6ed439670fe..fa8cec110288b4a416362260f2d192df5bd35aec 100644 (file)
@@ -233,7 +233,7 @@ fdtfile:
   the DTB with a different DTB. fdtfile will automatically be set for you if
   it matches the format ${soc}-${board}.dtb which covers most 32 bit use cases.
   AArch64 generally does not match as the Linux kernel put the dtb files under
-  SoC vendor directories. 
+  SoC vendor directories.
 
 ramdisk_addr_r:
 
index 0b5061128c45847b089871a382415a157e058328..9007cfbf587a8339fb8e0eb1fa5b1718ed76dd79 100644 (file)
@@ -9,7 +9,7 @@ SoC.
 1.1 MAC Address: It is stored in fuse bank 4, with the 32 lsbs in word 2 and the
     16 msbs in word 3[15:0].
     For i.MX6SX and i.MX6UL, they have two MAC addresses. The second MAC address
-    is stored in fuse bank 4, with the 16 lsb in word 3[31:16] and the 32 msbs in 
+    is stored in fuse bank 4, with the 16 lsb in word 3[31:16] and the 32 msbs in
     word 4.
 
 Example:
index af65c559dc6963fa4b57d77c8a71437aeba6a1c6..52d9eadf49e109330a083a1fb515f393b243ce36 100644 (file)
@@ -339,7 +339,7 @@ int atsha204a_read(struct udevice *dev, enum atsha204a_zone zone, bool read32,
                retry--;
                atsha204a_wakeup(dev);
        } while (retry >= 0);
-       
+
        if (res) {
                debug("ATSHA204A read failed\n");
                return res;
index 582129d0df162a7498629ddd1000044ebf33161b..d0351b2c6ac8e3dad838822a58da5a1ccdecd7a9 100644 (file)
@@ -4,7 +4,7 @@
  * drivers and users.
  *
  * Copyright © 1999-2010 David Woodhouse <dwmw2@infradead.org>
- * Copyright © 2006      Red Hat UK Limited 
+ * Copyright © 2006      Red Hat UK Limited
  *
  */
 
@@ -123,7 +123,7 @@ void *idr_get_next(struct idr *idp, int *next)
        } else {
                *next = 0;
        }
-       
+
        return ret;
 }
 
index b1fd779884fe0e8ac4c8ab0219384927c9b645bb..0c26e1d9e63972533976cf589d017a069d7cdaca 100644 (file)
@@ -907,7 +907,7 @@ static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip)
 
        u32 timer = (CONFIG_SYS_HZ * timeo) / 1000;
        u32 time_start;
+
        time_start = get_timer(0);
        while (get_timer(time_start) < timer) {
                if (chip->dev_ready) {
index 5cc256bf20d223d2535a393deaf08d23dc3235b7..d03b8645c4463c075e1922fa4f328658ae500b79 100644 (file)
@@ -189,7 +189,7 @@ int nand_erase_opts(struct mtd_info *mtd,
 
 #define NAND_CMD_LOCK_TIGHT     0x2c
 #define NAND_CMD_LOCK_STATUS    0x7a
+
 /******************************************************************************
  * Support for locking / unlocking operations of some NAND devices
  *****************************************************************************/
index 61e38ba1ab777f9a7caf606f844152eda7039ed1..e2bd32697eaa073c86cc75953ac42deee63af70a 100644 (file)
@@ -115,7 +115,7 @@ static struct ubi_device *ubi_devices[UBI_MAX_DEVICES];
 #else
 struct ubi_device *ubi_devices[UBI_MAX_DEVICES];
 #endif
+
 #ifndef __UBOOT__
 /* Serializes UBI devices creations and removals */
 DEFINE_MUTEX(ubi_devices_mutex);
index ffb1a61402e9940fcd173f44f96658379699a953..753ca7276869c2352fed010dd9f968599814f6b4 100644 (file)
@@ -73,7 +73,7 @@ restart_aneg:
 
                if (!(wol & BIT(12)) ||
                        ((exp & EXPANSION_NWAY) && !(lpa & LPA_LPACK))) {
-                       
+
                        /* Looks like aneg failed after all */
                        if (!retries) {
                                printf("%s LPA corruption max attempts\n",
index 3e25cc7a01844d1a34856b41929215da4300ccf6..47a930ee95409f37a425c561c76ed2e242f8949a 100644 (file)
@@ -286,7 +286,7 @@ static int stm32_fmc_of_to_plat(struct udevice *dev)
                } else {
                        dev_dbg(dev, "cannot find st,mem_remap property\n");
                }
-               
+
                swp_fmc = dev_read_u32_default(dev, "st,swp_fmc", NOT_FOUND);
                if (swp_fmc != NOT_FOUND) {
                        /* set fmc swapping selection */
index d4e0745d0e097ae6c80ed55981e3aba276451ffc..5896bcb421813198fe9fee55326b6a61eb72918b 100644 (file)
@@ -70,16 +70,16 @@ struct reset_ops meson_reset_ops = {
        .rst_deassert = meson_reset_deassert,
 };
 
-static const struct udevice_id meson_reset_ids[] = {                          
-       { .compatible = "amlogic,meson-gxbb-reset" },                                  
+static const struct udevice_id meson_reset_ids[] = {
+       { .compatible = "amlogic,meson-gxbb-reset" },
        { .compatible = "amlogic,meson-axg-reset" },
-       { }                                                                     
-};  
+       { }
+};
 
 static int meson_reset_probe(struct udevice *dev)
 {
        struct meson_reset_priv *priv = dev_get_priv(dev);
-       
+
        return regmap_init_mem(dev_ofnode(dev), &priv->regmap);
 }
 
index ac4d0824b9843af7a6000605eec0f62a1f85ad4c..a22623c316ed12a65817d4964d1c2a3578d52b6b 100644 (file)
@@ -233,7 +233,7 @@ static int msm_serial_of_to_plat(struct udevice *dev)
        if (priv->base == FDT_ADDR_T_NONE)
                return -EINVAL;
 
-       priv->clk_bit_rate = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), 
+       priv->clk_bit_rate = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
                                                        "bit-rate", UART_DM_CLK_RX_TX_BIT_RATE);
 
        return 0;
index 08467d6210b688726870ab17bdf7700d5dce567b..7c26290c15c44bb4f2f0383ed4859194abfddccc 100644 (file)
@@ -170,7 +170,7 @@ static int dwc3_meson_gxl_usb2_init(struct dwc3_meson_gxl *priv)
 static int dwc3_meson_gxl_usb_init(struct dwc3_meson_gxl *priv)
 {
        int ret;
-       
+
        ret = dwc3_meson_gxl_usb2_init(priv);
        if (ret)
                return ret;
index e9362f6def3300c641a30720734e5a13853decbc..9fd01fafdf7a15585d93eeef308b884a99149a8b 100644 (file)
 
 
 /* SUNXI has different reg addresses, but identical r/w functions */
-#ifndef CONFIG_ARCH_SUNXI 
+#ifndef CONFIG_ARCH_SUNXI
 
 /*
  * Common USB registers
index 8ac2f0a78adb9587b2e2c55e2271dd561932116e..61ff68def2faba53093e2e46832e1fd065a475b5 100644 (file)
@@ -159,7 +159,7 @@ static struct int_queue *_musb_create_int_queue(struct musb_host_data *host,
 static int _musb_destroy_int_queue(struct musb_host_data *host,
        struct usb_device *dev, struct int_queue *queue)
 {
-       int index = usb_pipein(queue->urb.pipe) * 16 + 
+       int index = usb_pipein(queue->urb.pipe) * 16 +
                    usb_pipeendpoint(queue->urb.pipe);
 
        if (queue->urb.status == -EINPROGRESS)
index afbc648883bc7df79a1148f95321094391622d5f..ffed3b82bed241662d7bd3194a8d82d9745cfa29 100644 (file)
@@ -327,7 +327,7 @@ static int ctrlreq_out_data_phase(struct usb_device *dev, u32 len, void *buffer)
 
                /* Set TXPKTRDY bit */
                csr = readw(&musbr->txcsr);
-                       
+
                csr |= MUSB_CSR0_TXPKTRDY;
                csr |= MUSB_CSR0_H_DIS_PING;
                writew(csr, &musbr->txcsr);
index b050c4292f6454bdc0918d7accdf959878abbd0c..3037ff39b41f7ad2daf727132858e83a141ffe1b 100644 (file)
@@ -67,11 +67,11 @@ void anx9804_init(unsigned int i2c_bus, u8 lanes, u8 data_rate, int bpp)
                printf("Error anx9804 clock is not stable\n");
 
        i2c_reg_write(0x39, ANX9804_VID_CTRL2_REG, colordepth);
-       
+
        /* Set a bunch of analog related register values */
-       i2c_reg_write(0x38, ANX9804_PLL_CTRL_REG, 0x07); 
-       i2c_reg_write(0x39, ANX9804_PLL_FILTER_CTRL3, 0x19); 
-       i2c_reg_write(0x39, ANX9804_PLL_CTRL3, 0xd9); 
+       i2c_reg_write(0x38, ANX9804_PLL_CTRL_REG, 0x07);
+       i2c_reg_write(0x39, ANX9804_PLL_FILTER_CTRL3, 0x19);
+       i2c_reg_write(0x39, ANX9804_PLL_CTRL3, 0xd9);
        i2c_reg_write(0x39, ANX9804_RST_CTRL2_REG, ANX9804_RST_CTRL2_AC_MODE);
        i2c_reg_write(0x39, ANX9804_ANALOG_DEBUG_REG1, 0xf0);
        i2c_reg_write(0x39, ANX9804_ANALOG_DEBUG_REG3, 0x99);
@@ -105,7 +105,7 @@ void anx9804_init(unsigned int i2c_bus, u8 lanes, u8 data_rate, int bpp)
        i2c_reg_write(0x38, ANX9804_LINK_BW_SET_REG, data_rate);
        i2c_reg_write(0x38, ANX9804_LANE_COUNT_SET_REG, lanes);
 
-       /* Link training */     
+       /* Link training */
        i2c_reg_write(0x38, ANX9804_LINK_TRAINING_CTRL_REG,
                      ANX9804_LINK_TRAINING_CTRL_EN);
        mdelay(5);
index 813b87a681739e1e9723db9298c2facb71f8d710..7ad0af73f05781a97a5232af8fdb038cac011bd5 100644 (file)
@@ -118,7 +118,7 @@ static int tl070wsh30_panel_probe(struct udevice *dev)
 
        /* reset panel */
        dm_gpio_set_value(&priv->reset, true);
-       
+
        mdelay(10);
 
        dm_gpio_set_value(&priv->reset, false);
index cf46b54718a6225a41fca9fe79cc0b91bdb76ad4..4b45e33ad1558d5052de3737a440e7818d959036 100644 (file)
 #ifdef CONFIG_MX6UL
 # define DRAM_OFFSET(x)                        0x87##x
 # define FDT_ADDR                      __stringify(DRAM_OFFSET(800000))
-#else 
+#else
 # define DRAM_OFFSET(x)                        0x1##x
 # define FDT_ADDR                      __stringify(DRAM_OFFSET(8000000))
 #endif
index 2fba9dc317e3c8bdbe665fad36118e9aaee69dfa..3417ca2a0d2eb5230f62dfc058900a2a5aecc4dc 100644 (file)
@@ -945,7 +945,7 @@ struct nand_chip {
        int jedec_version;
        struct nand_onfi_params onfi_params;
        struct nand_jedec_params jedec_params;
+
        struct nand_data_interface *data_interface;
 
        int read_retries;
index dca7efa14260786ddf2c3ce3bab0a442a4c6b1f0..20ea54397f21f3cd79a117c420e68775f6c6059e 100644 (file)
@@ -3,7 +3,7 @@
  * include/linux/serial_reg.h
  *
  * Copyright (C) 1992, 1994 by Theodore Ts'o.
- * 
+ *
  * These are the UART port assignments, expressed as offsets from the base
  * register.  These assignments should hold for any serial port based on
  * a 8250, 16450, or 16550(A).
@@ -88,7 +88,7 @@
 
 #define UART_LCR       3       /* Out: Line Control Register */
 /*
- * Note: if the word length is 5 bits (UART_LCR_WLEN5), then setting 
+ * Note: if the word length is 5 bits (UART_LCR_WLEN5), then setting
  * UART_LCR_STOP will select 1.5 stop bits, not 2 stop bits.
  */
 #define UART_LCR_DLAB          0x80 /* Divisor latch access bit */
index a9e48cc7b50a3630e1230d487e513831d65b873f..2ec7419301ded8a4d5193d536d338347d112dd97 100644 (file)
@@ -639,7 +639,7 @@ on_set_option_mode3_activate(GtkMenuItem *menuitem, gpointer user_data)
 void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkWidget *dialog;
-       const gchar *intro_text = 
+       const gchar *intro_text =
            "Welcome to gkc, the GTK+ graphical configuration tool\n"
            "For each option, a blank box indicates the feature is disabled, a\n"
            "check indicates it is enabled, and a dot indicates that it is to\n"
index adabd41452640991ed86d1557ac32012042ce4e0..03fb7e03758f64b72f3707d49283109776a3c0cf 100644 (file)
@@ -427,7 +427,7 @@ static void tokenise(char *buffer, char *end)
                                }
                                memcpy(tokens[tix].content, start, tokens[tix].size);
                                tokens[tix].content[tokens[tix].size] = 0;
-                               
+
                                /* If it begins with a lowercase letter then
                                 * it's an element name
                                 */
index b238a8b4bab1bdc7450b806016233e30f4d4c447..de2d9e4d2846745df8714954beb5b4ae5f20649a 100644 (file)
@@ -3,15 +3,15 @@ Author: Simon Glass <sjg@chromium.org>
 Date:   Sat Apr 15 15:39:08 2017 -0600
 
     pci: Correct cast for sandbox
-    
+
     This gives a warning with some native compilers:
-    
+
     cmd/pci.c:152:11: warning: format ‘%llx’ expects argument of type
        ‘long long unsigned int’, but argument 3 has type
        ‘u64 {aka long unsigned int}’ [-Wformat=]
-    
+
     Fix it with a cast.
-    
+
     Signed-off-by: Simon Glass <sjg@chromium.org>
     Commit-changes: 2
     - second revision change
@@ -21,7 +21,7 @@ Date:   Sat Apr 15 15:39:08 2017 -0600
     about some things
     from the first commit
     END
-    
+
     Commit-notes:
     Some notes about
     the first commit
@@ -32,15 +32,15 @@ Author: Simon Glass <sjg@chromium.org>
 Date:   Sat Apr 15 15:39:08 2017 -0600
 
     fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
-    
+
     This gives a warning with some native compilers:
-    
+
     lib/fdtdec.c:1203:8: warning: format ‘%llx’ expects argument of type
        ‘long long unsigned int’, but argument 3 has type
        ‘long unsigned int’ [-Wformat=]
-    
+
     Fix it with a cast.
-    
+
     Signed-off-by: Simon Glass <sjg@chromium.org>
     Series-to: u-boot
     Series-prefix: RFC
@@ -60,7 +60,7 @@ Date:   Sat Apr 15 15:39:08 2017 -0600
 
     Cover-changes: 4
     - Some notes for the cover letter
-    
+
     Cover-letter:
     test: A test patch series
     This is a test of how the cover