From: Sascha Hauer <s.hauer@pengutronix.de>
To: Alexander Aring <alex.aring@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] barebox: remove double semicolons
Date: Mon, 18 Nov 2013 10:14:02 +0100 [thread overview]
Message-ID: <20131118091402.GX24559@pengutronix.de> (raw)
In-Reply-To: <1384435808-17524-1-git-send-email-alex.aring@gmail.com>
Applied, thanks
No need to split this up further.
Sascha
On Thu, Nov 14, 2013 at 02:30:08PM +0100, Alexander Aring wrote:
> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> ---
> I was bored during a lecture.
> Just did a grep for find them.
> This isn't compile tested.
>
> arch/arm/mach-imx/imx-bbu-internal.c | 3 ++-
> drivers/ata/ahci.c | 2 +-
> drivers/mci/mci-core.c | 2 +-
> drivers/net/altera_tse.c | 2 +-
> drivers/usb/gadget/dfu.c | 2 +-
> lib/gui/bmp.c | 4 ++--
> net/dns.c | 2 +-
> net/net.c | 2 +-
> 8 files changed, 10 insertions(+), 9 deletions(-)
>
> diff --git a/arch/arm/mach-imx/imx-bbu-internal.c b/arch/arm/mach-imx/imx-bbu-internal.c
> index a96b110..9861c07 100644
> --- a/arch/arm/mach-imx/imx-bbu-internal.c
> +++ b/arch/arm/mach-imx/imx-bbu-internal.c
> @@ -360,7 +360,8 @@ static void imx_bbu_internal_v2_init_flash_header(struct bbu_handler *handler, s
> flash_header->self = imx_handler->app_dest + flash_header_offset;
>
> flash_header->boot_data.start = imx_handler->app_dest;
> - flash_header->boot_data.size = ALIGN(imx_pre_image_size + data->len, 4096);;
> + flash_header->boot_data.size = ALIGN(imx_pre_image_size +
> + data->len, 4096);
>
> if (imx_handler->dcdsize) {
> flash_header->dcd.header.tag = DCD_HEADER_TAG;
> diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c
> index f9cf2d1..74f247d 100644
> --- a/drivers/ata/ahci.c
> +++ b/drivers/ata/ahci.c
> @@ -375,7 +375,7 @@ static int ahci_init_port(struct ahci_port *ahci_port)
> ret = wait_on_timeout(WAIT_LINKUP,
> (ahci_port_read(ahci_port, PORT_SCR_STAT) & 0xf) == 0x3);
> if (ret) {
> - ahci_port_info(ahci_port, "SATA link timeout\n");;
> + ahci_port_info(ahci_port, "SATA link timeout\n");
> ret = -ETIMEDOUT;
> goto err_init;
> }
> diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
> index cfae91b..0c3cad9 100644
> --- a/drivers/mci/mci-core.c
> +++ b/drivers/mci/mci-core.c
> @@ -831,7 +831,7 @@ static void mci_extract_card_capacity_from_csd(struct mci *mci)
> mci->capacity = (csize + 1) << (cmult + 2);
> }
>
> - mci->capacity *= 1 << UNSTUFF_BITS(mci->csd, 80, 4);;
> + mci->capacity *= 1 << UNSTUFF_BITS(mci->csd, 80, 4);
> dev_dbg(&mci->dev, "Capacity: %u MiB\n", (unsigned)(mci->capacity >> 20));
> }
>
> diff --git a/drivers/net/altera_tse.c b/drivers/net/altera_tse.c
> index 1a44278..6978e2a 100644
> --- a/drivers/net/altera_tse.c
> +++ b/drivers/net/altera_tse.c
> @@ -376,7 +376,7 @@ static int tse_eth_send(struct eth_device *edev, void *packet, int length)
>
> alt_sgdma_do_sync_transfer(tx_sgdma, tx_desc_cur);
>
> - return 0;;
> + return 0;
> }
>
> static void tse_eth_halt(struct eth_device *edev)
> diff --git a/drivers/usb/gadget/dfu.c b/drivers/usb/gadget/dfu.c
> index e051879..e15fc41 100644
> --- a/drivers/usb/gadget/dfu.c
> +++ b/drivers/usb/gadget/dfu.c
> @@ -61,7 +61,7 @@
> #define DFU_TEMPFILE "/dfu_temp"
>
> static int dfualt;
> -static int dfufd = -EINVAL;;
> +static int dfufd = -EINVAL;
> static struct usb_dfu_dev *dfu_devs;
> static int dfu_num_alt;
> static int dfudetach;
> diff --git a/lib/gui/bmp.c b/lib/gui/bmp.c
> index dcf3095..6943a1c 100644
> --- a/lib/gui/bmp.c
> +++ b/lib/gui/bmp.c
> @@ -19,8 +19,8 @@ struct image *bmp_open(char *inbuf, int insize)
> }
>
> img->data = inbuf;
> - img->height = le32_to_cpu(bmp->header.height);;
> - img->width = le32_to_cpu(bmp->header.width);;
> + img->height = le32_to_cpu(bmp->header.height);
> + img->width = le32_to_cpu(bmp->header.width);
> img->bits_per_pixel = le16_to_cpu(bmp->header.bit_count);
>
> pr_debug("bmp: %d x %d x %d data@0x%p\n", img->width, img->height,
> diff --git a/net/dns.c b/net/dns.c
> index eb96c57..afd2663 100644
> --- a/net/dns.c
> +++ b/net/dns.c
> @@ -127,7 +127,7 @@ static void dns_handler(void *ctx, char *packet, unsigned len)
> debug("%s\n", __func__);
>
> /* We sent 1 query. We want to see more that 1 answer. */
> - header = (struct header *)net_eth_to_udp_payload(packet);;
> + header = (struct header *)net_eth_to_udp_payload(packet);
> if (ntohs(header->nqueries) != 1)
> return;
>
> diff --git a/net/net.c b/net/net.c
> index 058a4d3..9ef0784 100644
> --- a/net/net.c
> +++ b/net/net.c
> @@ -433,7 +433,7 @@ void net_unregister(struct net_connection *con)
> static int net_ip_send(struct net_connection *con, int len)
> {
> con->ip->tot_len = htons(sizeof(struct iphdr) + len);
> - con->ip->id = htons(net_ip_id++);;
> + con->ip->id = htons(net_ip_id++);
> con->ip->check = 0;
> con->ip->check = ~net_checksum((unsigned char *)con->ip, sizeof(struct iphdr));
>
> --
> 1.8.4.2
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2013-11-18 9:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-14 13:30 Alexander Aring
2013-11-14 15:39 ` Alexander Aring
2013-11-18 9:14 ` Sascha Hauer [this message]
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=20131118091402.GX24559@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=alex.aring@gmail.com \
--cc=barebox@lists.infradead.org \
/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