All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hauke Mehrtens <hauke@hauke-m.de>
To: Patrick Ziegler <patrick.ziegler@fh-kl.de>
Cc: "Luis R. Rodriguez" <mcgrof@kernel.org>, backports@vger.kernel.org
Subject: Re: [PATCH 1/9] backports: fix build errors for old kernel versions without PCI support
Date: Thu, 08 Aug 2013 01:02:11 +0200	[thread overview]
Message-ID: <5202D1F3.10404@hauke-m.de> (raw)
In-Reply-To: <51FB981B.6010502@fh-kl.de>

On 08/02/2013 01:29 PM, Patrick Ziegler wrote:
> Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de>
> ---
>  backport/compat/compat-2.6.25.c | 4 ++++
>  backport/compat/compat-2.6.28.c | 1 +
>  2 files changed, 5 insertions(+)
> 
> diff --git a/backport/compat/compat-2.6.25.c b/backport/compat/compat-2.6.25.c
> index b3597ea..169a555 100644
> --- a/backport/compat/compat-2.6.25.c
> +++ b/backport/compat/compat-2.6.25.c
> @@ -212,9 +212,13 @@ EXPORT_SYMBOL_GPL(sg_alloc_table);
>   */
>  int pci_enable_device_mem(struct pci_dev *dev)
>  {
> +#ifdef CONFIG_PCI
>  	int bars = pci_select_bars(dev, IORESOURCE_MEM);
>  
>  	return pci_enable_device_bars(dev, bars);
> +#else
> +	return 0;
> +#endif
>  }
>  EXPORT_SYMBOL_GPL(pci_enable_device_mem);
>  

I liked the older patch more where you removed the pci functions when
pci was not configured.

> diff --git a/backport/compat/compat-2.6.28.c b/backport/compat/compat-2.6.28.c
> index e47626b..2ff6b1e 100644
> --- a/backport/compat/compat-2.6.28.c
> +++ b/backport/compat/compat-2.6.28.c
> @@ -12,6 +12,7 @@
>  #include <linux/usb.h>
>  #include <linux/tty.h>
>  #include <linux/skbuff.h>
> +#include <linux/pci.h>
>  #include <asm/poll.h>
>  
>  /* 2.6.28 compat code goes here */
> 


  reply	other threads:[~2013-08-07 23:04 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1375442885.git.patrick.ziegler@fh-kl.de>
2013-08-02 11:29 ` [PATCH 1/9] backports: fix build errors for old kernel versions without PCI support Patrick Ziegler
2013-08-07 23:02   ` Hauke Mehrtens [this message]
2013-08-02 11:29 ` [PATCH 2/9] backports: add eth_prepare_mac_addr_change() and eth_commit_mac_addr_change() Patrick Ziegler
2013-08-07 23:04   ` Hauke Mehrtens
2013-08-02 11:29 ` [PATCH 3/9] backports: define PM_EVENT_AUTO Patrick Ziegler
2013-08-02 11:29 ` [PATCH 4/9] backports: add usb_translate_errors() Patrick Ziegler
2013-08-02 11:29 ` [PATCH 5/9] backports: add usb_endpoint_maxp() Patrick Ziegler
2013-08-02 11:30 ` [PATCH 7/9] backports: include headers directly if math64 header is missing Patrick Ziegler
2013-08-02 11:30 ` [PATCH 8/9] backports: define phys_addr_t for ARM on kernel version < 2.6.25 Patrick Ziegler
2013-08-02 11:30 ` [PATCH 9/9] backports: add wwan device drivers Patrick Ziegler
2013-08-02 11:30 ` [PATCH 6/9] backports: update enum usb_device_speed with USB_SPEED_SUPER Patrick Ziegler

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=5202D1F3.10404@hauke-m.de \
    --to=hauke@hauke-m.de \
    --cc=backports@vger.kernel.org \
    --cc=mcgrof@kernel.org \
    --cc=patrick.ziegler@fh-kl.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.