From: "Michael S. Tsirkin" <mst@redhat.com>
To: Stefan Weil <weil@mail.berlios.de>
Cc: QEMU Developers <qemu-devel@nongnu.org>
Subject: [Qemu-devel] Re: [PATCH] pci: Add missing 'const' in argument to pci_get_xxx
Date: Mon, 11 Jan 2010 22:37:30 +0200 [thread overview]
Message-ID: <20100111203730.GA20210@redhat.com> (raw)
In-Reply-To: <1263241213-19716-1-git-send-email-weil@mail.berlios.de>
On Mon, Jan 11, 2010 at 09:20:13PM +0100, Stefan Weil wrote:
> pci_get_byte, pci_get_word, pci_get_long and pci_get_quad
> all take a const uint8_t pointer, because they only read
> the configuration data.
>
> Their prototypes should reflect this fact.
>
> Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Applied, thanks!
> ---
> hw/pci.h | 14 +++++++-------
> 1 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/hw/pci.h b/hw/pci.h
> index 9b5ae97..025eb9f 100644
> --- a/hw/pci.h
> +++ b/hw/pci.h
> @@ -245,7 +245,7 @@ pci_set_byte(uint8_t *config, uint8_t val)
> }
>
> static inline uint8_t
> -pci_get_byte(uint8_t *config)
> +pci_get_byte(const uint8_t *config)
> {
> return *config;
> }
> @@ -257,9 +257,9 @@ pci_set_word(uint8_t *config, uint16_t val)
> }
>
> static inline uint16_t
> -pci_get_word(uint8_t *config)
> +pci_get_word(const uint8_t *config)
> {
> - return le16_to_cpupu((uint16_t *)config);
> + return le16_to_cpupu((const uint16_t *)config);
> }
>
> static inline void
> @@ -269,9 +269,9 @@ pci_set_long(uint8_t *config, uint32_t val)
> }
>
> static inline uint32_t
> -pci_get_long(uint8_t *config)
> +pci_get_long(const uint8_t *config)
> {
> - return le32_to_cpupu((uint32_t *)config);
> + return le32_to_cpupu((const uint32_t *)config);
> }
>
> static inline void
> @@ -281,9 +281,9 @@ pci_set_quad(uint8_t *config, uint64_t val)
> }
>
> static inline uint64_t
> -pci_get_quad(uint8_t *config)
> +pci_get_quad(const uint8_t *config)
> {
> - return le64_to_cpup((uint64_t *)config);
> + return le64_to_cpup((const uint64_t *)config);
> }
>
> static inline void
> --
> 1.6.5
prev parent reply other threads:[~2010-01-11 20:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-11 20:20 [Qemu-devel] [PATCH] pci: Add missing 'const' in argument to pci_get_xxx Stefan Weil
2010-01-11 20:37 ` Michael S. Tsirkin [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=20100111203730.GA20210@redhat.com \
--to=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=weil@mail.berlios.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;
as well as URLs for NNTP newsgroup(s).