mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Matti Linnanvuori <mattilinn@gmail.com>
Cc: tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
	linux-kernel@vger.kernel.org
Subject: Re: [patch] x86: add compilation checks to pci_unmap_ macros
Date: Mon, 30 Jun 2008 12:23:32 +0200	[thread overview]
Message-ID: <20080630102332.GC31497@elte.hu> (raw)
In-Reply-To: <ca0148c30806282322u51cf8ecct700f442466b58ee4@mail.gmail.com>


* Matti Linnanvuori <mattilinn@gmail.com> wrote:

> From: Matti Linnanvuori <mattilinnanvuori@yahoo.com>
> 
> Add compilation checks to pci_unmap_ macros.

> -#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
> -#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
> -#define pci_unmap_addr(PTR, ADDR_NAME)		(0)
> -#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL)	do { } while (0)
> -#define pci_unmap_len(PTR, LEN_NAME)		(0)
> -#define pci_unmap_len_set(PTR, LEN_NAME, VAL)	do { } while (0)
> +#define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)	dma_addr_t ADDR_NAME[0];
> +#define DECLARE_PCI_UNMAP_LEN(LEN_NAME)	unsigned LEN_NAME[0];
> +#define pci_unmap_addr(PTR, ADDR_NAME)	sizeof((PTR)->ADDR_NAME)
> +#define pci_unmap_addr_set(PTR, ADDR_NAME, VAL) \
> +	do { break; } while (pci_unmap_addr(PTR, ADDR_NAME))
> +#define pci_unmap_len(PTR, LEN_NAME)		sizeof((PTR)->LEN_NAME)
> +#define pci_unmap_len_set(PTR, LEN_NAME, VAL) \
> +	do { break; } while (pci_unmap_len(PTR, LEN_NAME))

applied to tip/x86/cleanups - thanks Matti.

Would you be interested in doing a small cleanup as well and convert the 
parameter names to non-shouting lower-case letters? (If you do it then 
please do it as a delta patch as i've already applied your current 
patch.)

	Ingo

      parent reply	other threads:[~2008-06-30 10:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-29  6:22 Matti Linnanvuori
2008-06-29 12:52 ` Jan Engelhardt
2008-06-30  6:34   ` Matti Linnanvuori
2008-06-30 10:18   ` Ingo Molnar
2008-06-30 10:23 ` Ingo Molnar [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=20080630102332.GC31497@elte.hu \
    --to=mingo@elte.hu \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mattilinn@gmail.com \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.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

Powered by JetHome