From: Lukasz Majewski <l.majewski@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [u-boot 21/40] dwc3: core: change probe and remove to uboot init and uboot exit code
Date: Mon, 16 Feb 2015 11:59:02 +0100 [thread overview]
Message-ID: <20150216115902.77c1800d@amdc2363> (raw)
In-Reply-To: <1423212497-11970-22-git-send-email-kishon@ti.com>
Hi Kishon,
> Removed probe and remove that are specific to linux and replaced it
> with uboot init and uboot exit. These functions will be invoked from
> boardfile.
>
> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
> drivers/usb/dwc3/core.c | 218
> +++++++++++------------------------------------ 1 file changed, 52
> insertions(+), 166 deletions(-)
>
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index 78322b7..58c3bfd 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -16,6 +16,7 @@
>
> #include <common.h>
> #include <malloc.h>
> +#include <dwc3-uboot.h>
> #include <asm/dma-mapping.h>
> #include <linux/ioport.h>
>
> @@ -28,6 +29,7 @@
>
> #include "linux-compat.h"
>
> +struct dwc3 *dwc;
> /*
> --------------------------------------------------------------------------
> */ void dwc3_set_mode(struct dwc3 *dwc, u32 mode)
> @@ -597,20 +599,26 @@ static void dwc3_core_exit_mode(struct dwc3
> *dwc)
> #define DWC3_ALIGN_MASK (16 - 1)
>
> -static int dwc3_probe(struct platform_device *pdev)
> +/**
> + * dwc3_uboot_init - dwc3 core uboot initialization code
> + * @dwc3_dev: struct dwc3_device containing initialization data
> + *
> + * Entry point for dwc3 driver (equivalent to dwc3_probe in linux
> + * kernel driver). Pointer to dwc3_device should be passed containing
> + * base address and other initialization data. Returns '0' on
> success and
> + * a negative value on failure.
> + *
> + * Generally called from board_usb_init() implemented in board file.
> + */
> +int dwc3_uboot_init(struct dwc3_device *dwc3_dev)
> {
> - struct device *dev = &pdev->dev;
> - struct dwc3_platform_data *pdata = dev_get_platdata(dev);
> - struct device_node *node = dev->of_node;
> - struct resource *res;
> - struct dwc3 *dwc;
> + struct device *dev;
> u8 lpm_nyet_threshold;
> u8 tx_de_emphasis;
> u8 hird_threshold;
>
> int ret;
>
> - void __iomem *regs;
> void *mem;
>
> mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK,
> GFP_KERNEL); @@ -619,48 +627,8 @@ static int dwc3_probe(struct
> platform_device *pdev)
> dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1);
> dwc->mem = mem;
> - dwc->dev = dev;
> -
> - res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
> - if (!res) {
> - dev_err(dev, "missing IRQ\n");
> - return -ENODEV;
> - }
> - dwc->xhci_resources[1].start = res->start;
> - dwc->xhci_resources[1].end = res->end;
> - dwc->xhci_resources[1].flags = res->flags;
> - dwc->xhci_resources[1].name = res->name;
> -
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - if (!res) {
> - dev_err(dev, "missing memory resource\n");
> - return -ENODEV;
> - }
>
> - dwc->xhci_resources[0].start = res->start;
> - dwc->xhci_resources[0].end = dwc->xhci_resources[0].start +
> - DWC3_XHCI_REGS_END;
> - dwc->xhci_resources[0].flags = res->flags;
> - dwc->xhci_resources[0].name = res->name;
> -
> - res->start += DWC3_GLOBALS_REGS_START;
> -
> - /*
> - * Request memory region but exclude xHCI regs,
> - * since it will be requested by the xhci-plat driver.
> - */
> - regs = devm_ioremap_resource(dev, res);
> - if (IS_ERR(regs))
> - return PTR_ERR(regs);
> -
> - dwc->regs = regs;
> - dwc->regs_size = resource_size(res);
> - /*
> - * restore res->start back to its original value so that,
> - * in case the probe is deferred, we don't end up getting
> error in
> - * request the memory region the next time probe is called.
> - */
> - res->start -= DWC3_GLOBALS_REGS_START;
> + dwc->regs = (int *)(dwc3_dev->base +
> DWC3_GLOBALS_REGS_START);
> /* default to highest possible threshold */
> lpm_nyet_threshold = 0xff;
> @@ -674,73 +642,31 @@ static int dwc3_probe(struct platform_device
> *pdev) */
> hird_threshold = 12;
>
> - if (node) {
> - dwc->maximum_speed = of_usb_get_maximum_speed(node);
> - dwc->has_lpm_erratum = of_property_read_bool(node,
> - "snps,has-lpm-erratum");
> - of_property_read_u8(node, "snps,lpm-nyet-threshold",
> - &lpm_nyet_threshold);
> - dwc->is_utmi_l1_suspend = of_property_read_bool(node,
> - "snps,is-utmi-l1-suspend");
> - of_property_read_u8(node, "snps,hird-threshold",
> - &hird_threshold);
> -
> - dwc->needs_fifo_resize = of_property_read_bool(node,
> - "tx-fifo-resize");
> - dwc->dr_mode = of_usb_get_dr_mode(node);
> -
> - dwc->disable_scramble_quirk =
> of_property_read_bool(node,
> - "snps,disable_scramble_quirk");
> - dwc->u2exit_lfps_quirk = of_property_read_bool(node,
> - "snps,u2exit_lfps_quirk");
> - dwc->u2ss_inp3_quirk = of_property_read_bool(node,
> - "snps,u2ss_inp3_quirk");
> - dwc->req_p1p2p3_quirk = of_property_read_bool(node,
> - "snps,req_p1p2p3_quirk");
> - dwc->del_p1p2p3_quirk = of_property_read_bool(node,
> - "snps,del_p1p2p3_quirk");
> - dwc->del_phy_power_chg_quirk =
> of_property_read_bool(node,
> - "snps,del_phy_power_chg_quirk");
> - dwc->lfps_filter_quirk = of_property_read_bool(node,
> - "snps,lfps_filter_quirk");
> - dwc->rx_detect_poll_quirk =
> of_property_read_bool(node,
> - "snps,rx_detect_poll_quirk");
> - dwc->dis_u3_susphy_quirk =
> of_property_read_bool(node,
> - "snps,dis_u3_susphy_quirk");
> - dwc->dis_u2_susphy_quirk =
> of_property_read_bool(node,
> - "snps,dis_u2_susphy_quirk");
> -
> - dwc->tx_de_emphasis_quirk =
> of_property_read_bool(node,
> - "snps,tx_de_emphasis_quirk");
> - of_property_read_u8(node, "snps,tx_de_emphasis",
> - &tx_de_emphasis);
> - } else if (pdata) {
> - dwc->maximum_speed = pdata->maximum_speed;
> - dwc->has_lpm_erratum = pdata->has_lpm_erratum;
> - if (pdata->lpm_nyet_threshold)
> - lpm_nyet_threshold =
> pdata->lpm_nyet_threshold;
> - dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend;
> - if (pdata->hird_threshold)
> - hird_threshold = pdata->hird_threshold;
> -
> - dwc->needs_fifo_resize = pdata->tx_fifo_resize;
> - dwc->dr_mode = pdata->dr_mode;
> -
> - dwc->disable_scramble_quirk =
> pdata->disable_scramble_quirk;
> - dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk;
> - dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk;
> - dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk;
> - dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk;
> - dwc->del_phy_power_chg_quirk =
> pdata->del_phy_power_chg_quirk;
> - dwc->lfps_filter_quirk = pdata->lfps_filter_quirk;
> - dwc->rx_detect_poll_quirk =
> pdata->rx_detect_poll_quirk;
> - dwc->dis_u3_susphy_quirk =
> pdata->dis_u3_susphy_quirk;
> - dwc->dis_u2_susphy_quirk =
> pdata->dis_u2_susphy_quirk; -
> - dwc->tx_de_emphasis_quirk =
> pdata->tx_de_emphasis_quirk;
> - if (pdata->tx_de_emphasis)
> - tx_de_emphasis = pdata->tx_de_emphasis;
> - }
> + dwc->maximum_speed = dwc3_dev->maximum_speed;
> + dwc->has_lpm_erratum = dwc3_dev->has_lpm_erratum;
> + if (dwc3_dev->lpm_nyet_threshold)
> + lpm_nyet_threshold = dwc3_dev->lpm_nyet_threshold;
> + dwc->is_utmi_l1_suspend = dwc3_dev->is_utmi_l1_suspend;
> + if (dwc3_dev->hird_threshold)
> + hird_threshold = dwc3_dev->hird_threshold;
> +
> + dwc->needs_fifo_resize = dwc3_dev->tx_fifo_resize;
> + dwc->dr_mode = dwc3_dev->dr_mode;
> +
> + dwc->disable_scramble_quirk =
> dwc3_dev->disable_scramble_quirk;
> + dwc->u2exit_lfps_quirk = dwc3_dev->u2exit_lfps_quirk;
> + dwc->u2ss_inp3_quirk = dwc3_dev->u2ss_inp3_quirk;
> + dwc->req_p1p2p3_quirk = dwc3_dev->req_p1p2p3_quirk;
> + dwc->del_p1p2p3_quirk = dwc3_dev->del_p1p2p3_quirk;
> + dwc->del_phy_power_chg_quirk =
> dwc3_dev->del_phy_power_chg_quirk;
> + dwc->lfps_filter_quirk = dwc3_dev->lfps_filter_quirk;
> + dwc->rx_detect_poll_quirk = dwc3_dev->rx_detect_poll_quirk;
> + dwc->dis_u3_susphy_quirk = dwc3_dev->dis_u3_susphy_quirk;
> + dwc->dis_u2_susphy_quirk = dwc3_dev->dis_u2_susphy_quirk;
> +
> + dwc->tx_de_emphasis_quirk = dwc3_dev->tx_de_emphasis_quirk;
> + if (dwc3_dev->tx_de_emphasis)
> + tx_de_emphasis = dwc3_dev->tx_de_emphasis;
>
> /* default to superspeed if no maximum_speed passed */
> if (dwc->maximum_speed == USB_SPEED_UNKNOWN)
> @@ -752,15 +678,6 @@ static int dwc3_probe(struct platform_device
> *pdev) dwc->hird_threshold = hird_threshold
> | (dwc->is_utmi_l1_suspend << 4);
>
> - spin_lock_init(&dwc->lock);
> - platform_set_drvdata(pdev, dwc);
> -
> - if (!dev->dma_mask) {
> - dev->dma_mask = dev->parent->dma_mask;
> - dev->dma_parms = dev->parent->dma_parms;
> - dma_set_coherent_mask(dev,
> dev->parent->coherent_dma_mask);
> - }
> -
> dwc3_cache_hwparams(dwc);
>
> ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE);
> @@ -807,55 +724,24 @@ err0:
> return ret;
> }
>
> -static int dwc3_remove(struct platform_device *pdev)
> +/**
> + * dwc3_uboot_exit - dwc3 core uboot cleanup code
> + * @index: index of this controller
> + *
> + * Performs cleanup of memory allocated in dwc3_uboot_init and other
> misc
> + * cleanups (equivalent to dwc3_remove in linux).
> + *
> + * Generally called from board file.
> + */
> +void dwc3_uboot_exit()
> {
> - struct dwc3 *dwc = platform_get_drvdata(pdev);
> -
> dwc3_core_exit_mode(dwc);
> dwc3_event_buffers_cleanup(dwc);
> dwc3_free_event_buffers(dwc);
> -
> dwc3_core_exit(dwc);
> -
> - return 0;
> + kfree(dwc->mem);
> }
>
> -#ifdef CONFIG_OF
> -static const struct of_device_id of_dwc3_match[] = {
> - {
> - .compatible = "snps,dwc3"
> - },
> - {
> - .compatible = "synopsys,dwc3"
> - },
> - { },
> -};
> -MODULE_DEVICE_TABLE(of, of_dwc3_match);
> -#endif
> -
> -#ifdef CONFIG_ACPI
> -
> -#define ACPI_ID_INTEL_BSW "808622B7"
> -
> -static const struct acpi_device_id dwc3_acpi_match[] = {
> - { ACPI_ID_INTEL_BSW, 0 },
> - { },
> -};
> -MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match);
> -#endif
> -
> -static struct platform_driver dwc3_driver = {
> - .probe = dwc3_probe,
> - .remove = dwc3_remove,
> - .driver = {
> - .name = "dwc3",
> - .of_match_table = of_match_ptr(of_dwc3_match),
> - .acpi_match_table = ACPI_PTR(dwc3_acpi_match),
> - },
> -};
> -
> -module_platform_driver(dwc3_driver);
> -
> MODULE_ALIAS("platform:dwc3");
> MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
> MODULE_LICENSE("GPL v2");
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
--
Best regards,
Lukasz Majewski
Samsung R&D Institute Poland (SRPOL) | Linux Platform Group
next prev parent reply other threads:[~2015-02-16 10:59 UTC|newest]
Thread overview: 104+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-06 8:47 [U-Boot] [u-boot 00/40] dra7xx: am43xx: add dwc3 gadget driver support and enable dfu Kishon Vijay Abraham I
2015-02-06 8:47 ` [U-Boot] [u-boot 01/40] ARM: DRA7: Enable clocks for USB OTGSS and USB PHY Kishon Vijay Abraham I
2015-02-16 10:04 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 02/40] ARM: AM43xx: " Kishon Vijay Abraham I
2015-02-16 10:07 ` Lukasz Majewski
2015-02-16 13:29 ` Marek Vasut
2015-02-20 9:30 ` Kishon Vijay Abraham I
2015-02-20 10:48 ` Marek Vasut
2015-02-06 8:47 ` [U-Boot] [u-boot 03/40] usb: gadget: udc: add udc-core from linux kernel to u-boot Kishon Vijay Abraham I
2015-02-07 13:27 ` Marek Vasut
2015-02-16 9:58 ` Lukasz Majewski
2015-02-16 13:29 ` Marek Vasut
2015-02-16 10:11 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 04/40] include: usb: modify gadget.h to include udc support Kishon Vijay Abraham I
2015-02-16 10:12 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 05/40] usb: gadget: udc: make udc-core compile in u-boot build Kishon Vijay Abraham I
2015-02-16 10:18 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 06/40] include: asm: dma-mapping: get rid of the compilation warning in udc-core Kishon Vijay Abraham I
2015-02-16 10:19 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 07/40] usb: dwc3: add dwc3 folder from linux kernel to u-boot Kishon Vijay Abraham I
2015-02-16 10:20 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 08/40] usb: dwc3: remove un-used files from dwc3 folder Kishon Vijay Abraham I
2015-02-16 10:21 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 09/40] usb: dwc3: Modify the file headers to u-boot format Kishon Vijay Abraham I
2015-02-16 10:21 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 10/40] usb: dwc3: remove trace_* APIs from dwc3 driver Kishon Vijay Abraham I
2015-02-16 10:24 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 11/40] usb: dwc3: fix dwc3 header files Kishon Vijay Abraham I
2015-02-16 10:25 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 12/40] usb: dwc3: remove pm related operations from dwc3 driver Kishon Vijay Abraham I
2015-02-16 10:26 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 13/40] arm: asm: dma-mapping: added dma_free_coherent API Kishon Vijay Abraham I
2015-02-16 10:26 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 14/40] usb: dwc3: linux-compat: Add header for dwc3 linux compatibiltiy Kishon Vijay Abraham I
2015-02-16 10:32 ` Lukasz Majewski
2015-02-23 6:19 ` Kishon Vijay Abraham I
2015-02-23 14:59 ` Marek Vasut
2015-02-24 13:21 ` Kishon Vijay Abraham I
2015-02-24 17:42 ` Marek Vasut
2015-02-25 8:17 ` Lukasz Majewski
2015-02-25 12:16 ` Marek Vasut
2015-02-25 13:04 ` Lukasz Majewski
2015-02-27 9:43 ` Marek Vasut
2015-02-27 11:28 ` Lukasz Majewski
2015-03-02 9:51 ` Marek Vasut
2015-03-02 12:56 ` Lukasz Majewski
2015-03-02 14:30 ` Marek Vasut
2015-02-06 8:47 ` [U-Boot] [u-boot 15/40] usb: dwc3: gadget: make dwc3 gadget build in uboot Kishon Vijay Abraham I
2015-02-16 10:52 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 16/40] include: asm: types: add resource_size_t type Kishon Vijay Abraham I
2015-02-16 10:53 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 17/40] usb: dwc3: ep0: make dwc3 ep0 build in uboot Kishon Vijay Abraham I
2015-02-16 10:54 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 18/40] include: usb: composite: add USB_GADGET_DELAYED_STATUS to avoid compilation error Kishon Vijay Abraham I
2015-02-16 10:55 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 19/40] usb: dwc3: core: make dwc3 core build in uboot Kishon Vijay Abraham I
2015-02-16 10:57 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 20/40] include: dwc3-uboot: add a structure for populating platform data Kishon Vijay Abraham I
2015-02-16 10:58 ` Lukasz Majewski
2015-02-06 8:47 ` [U-Boot] [u-boot 21/40] dwc3: core: change probe and remove to uboot init and uboot exit code Kishon Vijay Abraham I
2015-02-16 10:59 ` Lukasz Majewski [this message]
2015-02-06 8:47 ` [U-Boot] [u-boot 22/40] dwc3: core: add support for multiple dwc3 controllers Kishon Vijay Abraham I
2015-02-16 11:00 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 23/40] dwc3: core: added an API to invoke irq handlers Kishon Vijay Abraham I
2015-02-16 11:01 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 24/40] usb: dwc3: dwc3-omap: make dwc3-omap build in uboot Kishon Vijay Abraham I
2015-02-16 11:02 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 25/40] include: dwc3-omap-uboot: add a structure for populating dwc3-omap platform data Kishon Vijay Abraham I
2015-02-16 11:03 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 26/40] usb: dwc3: dwc3-omap: change probe and remove to uboot init and uboot exit code Kishon Vijay Abraham I
2015-02-16 11:04 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 27/40] dwc3: dwc3-omap: add support for multiple dwc3-omap controllers Kishon Vijay Abraham I
2015-02-16 11:06 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 28/40] usb: dwc3: dwc3-omap: add interrupt status API to check for interrupts Kishon Vijay Abraham I
2015-02-16 11:07 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 29/40] usb: dwc3: TI PHY: PHY driver for dwc3 in TI platforms Kishon Vijay Abraham I
2015-02-16 11:13 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 30/40] dwc3: flush the buffers before using it Kishon Vijay Abraham I
2015-02-16 11:39 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 31/40] usb: dwc3: ep0: preparation for implementing chained TRB Kishon Vijay Abraham I
2015-02-16 11:40 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 32/40] usb: dwc3: Add chained TRB support for ep0 Kishon Vijay Abraham I
2015-02-16 11:42 ` Lukasz Majewski
2015-02-16 12:01 ` Kishon Vijay Abraham I
2015-02-16 13:04 ` Lukasz Majewski
2015-02-16 13:06 ` Kishon Vijay Abraham I
2015-02-06 8:48 ` [U-Boot] [u-boot 33/40] usb: dwc3: Makefile: Make dwc3 driver compile in u-boot Kishon Vijay Abraham I
2015-02-16 11:43 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 34/40] usb: gadget: defer setting maxpacket till ->setup() Kishon Vijay Abraham I
2015-02-16 11:44 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 35/40] common: cmd_dfu: invoke board_usb_cleanup() for cleaning up Kishon Vijay Abraham I
2015-02-16 11:47 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 36/40] board: ti: DRA7: added USB initializtion code Kishon Vijay Abraham I
2015-02-16 11:49 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 37/40] include: configs: Enable DWC3 and DFU in DRA7xx Kishon Vijay Abraham I
2015-02-16 11:50 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 38/40] board: ti: AM43xx: added USB initializtion code Kishon Vijay Abraham I
2015-02-16 11:50 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 39/40] include: configs: Enable DWC3 and DFU in AM43xx Kishon Vijay Abraham I
2015-02-16 11:53 ` Lukasz Majewski
2015-02-06 8:48 ` [U-Boot] [u-boot 40/40] usb: modify usb_gadget_handle_interrupts to take controller index Kishon Vijay Abraham I
2015-02-16 11:56 ` Lukasz Majewski
2015-02-07 13:32 ` [U-Boot] [u-boot 00/40] dra7xx: am43xx: add dwc3 gadget driver support and enable dfu Marek Vasut
2015-02-11 11:33 ` Kishon Vijay Abraham I
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150216115902.77c1800d@amdc2363 \
--to=l.majewski@samsung.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox