All of lore.kernel.org
 help / color / mirror / Atom feed
* [git pull] pinctrl: sh-pfc: Updates for v4.4
@ 2015-10-02  8:25 ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-02  8:25 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-sh, linux-gpio, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:

  Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4

for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:

  pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

Summary:
  - Two fixes for incorrect pinmux data,
  - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
    Ethernet),
  - Various cleanups.

Most have been acked by Laurent and/or by you.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (7):
      pinctrl: sh-pfc: Stop calling gpiochip_add_pin_range() on DT platforms
      pinctrl: sh-pfc: Remove empty gpio_function_free()
      pinctrl: sh-pfc: Confine legacy function GPIOs to SH
      pinctrl: sh-pfc: r8a7794: Remove bogus SCIF0 SCK pin data
      pinctrl: sh-pfc: r8a7791/r8a7793: Correct SCIFB1_B SCK MOD_SEL value
      pinctrl: sh-pfc: Get rid of CONFIG_ARCH_SHMOBILE_LEGACY
      pinctrl: sh-pfc: r8a7795: add SCIFx support

Kuninori Morimoto (10):
      pinctrl: sh-pfc: modify PINMUX_IPSR_MSEL() macro order
      pinctrl: sh-pfc: sh7734: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7794: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7791: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7790: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7779: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: remove unused PINMUX_IPSR_MODSEL_DATA()
      pinctrl: sh-pfc: r8a7795: add I2C pin support
      pinctrl: sh-pfc: r8a7795: add Audio clock pin support
      pinctrl: sh-pfc: r8a7795: add Audio SSI pin support

Laurent Pinchart (1):
      pinctrl: sh-pfc: Remove hardcoded IRQ numbers

Takeshi Kihara (2):
      pinctrl: sh-pfc: Initial R8A7795 PFC support
      pinctrl: sh-pfc: r8a7795: add EtherAVB support

 .../bindings/pinctrl/renesas,pfc-pinctrl.txt       |    1 +
 drivers/pinctrl/sh-pfc/Kconfig                     |    5 +
 drivers/pinctrl/sh-pfc/Makefile                    |    1 +
 drivers/pinctrl/sh-pfc/core.c                      |    6 +
 drivers/pinctrl/sh-pfc/core.h                      |    3 +
 drivers/pinctrl/sh-pfc/gpio.c                      |   37 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c               |  116 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c               |   64 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c               |  420 +--
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c               | 1038 ++++----
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c               | 1076 ++++----
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c               |  846 +++---
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c               | 2817 ++++++++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c                |   64 +-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c                |  778 +++---
 drivers/pinctrl/sh-pfc/sh_pfc.h                    |   12 +-
 16 files changed, 5047 insertions(+), 2237 deletions(-)
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a7795.c

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.4
@ 2015-10-02  8:25 ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-02  8:25 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-sh, linux-gpio, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:

  Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4

for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:

  pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

Summary:
  - Two fixes for incorrect pinmux data,
  - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
    Ethernet),
  - Various cleanups.

Most have been acked by Laurent and/or by you.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (7):
      pinctrl: sh-pfc: Stop calling gpiochip_add_pin_range() on DT platforms
      pinctrl: sh-pfc: Remove empty gpio_function_free()
      pinctrl: sh-pfc: Confine legacy function GPIOs to SH
      pinctrl: sh-pfc: r8a7794: Remove bogus SCIF0 SCK pin data
      pinctrl: sh-pfc: r8a7791/r8a7793: Correct SCIFB1_B SCK MOD_SEL value
      pinctrl: sh-pfc: Get rid of CONFIG_ARCH_SHMOBILE_LEGACY
      pinctrl: sh-pfc: r8a7795: add SCIFx support

Kuninori Morimoto (10):
      pinctrl: sh-pfc: modify PINMUX_IPSR_MSEL() macro order
      pinctrl: sh-pfc: sh7734: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7794: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7791: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7790: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: r8a7779: use PINMUX_IPSR_MSEL()
      pinctrl: sh-pfc: remove unused PINMUX_IPSR_MODSEL_DATA()
      pinctrl: sh-pfc: r8a7795: add I2C pin support
      pinctrl: sh-pfc: r8a7795: add Audio clock pin support
      pinctrl: sh-pfc: r8a7795: add Audio SSI pin support

Laurent Pinchart (1):
      pinctrl: sh-pfc: Remove hardcoded IRQ numbers

Takeshi Kihara (2):
      pinctrl: sh-pfc: Initial R8A7795 PFC support
      pinctrl: sh-pfc: r8a7795: add EtherAVB support

 .../bindings/pinctrl/renesas,pfc-pinctrl.txt       |    1 +
 drivers/pinctrl/sh-pfc/Kconfig                     |    5 +
 drivers/pinctrl/sh-pfc/Makefile                    |    1 +
 drivers/pinctrl/sh-pfc/core.c                      |    6 +
 drivers/pinctrl/sh-pfc/core.h                      |    3 +
 drivers/pinctrl/sh-pfc/gpio.c                      |   37 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c               |  116 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c               |   64 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c               |  420 +--
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c               | 1038 ++++----
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c               | 1076 ++++----
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c               |  846 +++---
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c               | 2817 ++++++++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c                |   64 +-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c                |  778 +++---
 drivers/pinctrl/sh-pfc/sh_pfc.h                    |   12 +-
 16 files changed, 5047 insertions(+), 2237 deletions(-)
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a7795.c

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4
  2015-10-02  8:25 ` Geert Uytterhoeven
@ 2015-10-02  9:26   ` Linus Walleij
  -1 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02  9:26 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-sh, linux-gpio

On Fri, Oct 2, 2015 at 1:25 AM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
>
>   Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4
>
> for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:
>
>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)
>
> Summary:
>   - Two fixes for incorrect pinmux data,
>   - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
>     Ethernet),
>   - Various cleanups.
>
> Most have been acked by Laurent and/or by you.

Awesome, pulled into the pinctrl "devel" branch, will push to the kernel zeroday
builder soon.

If you have more stuff and fixes coming just send more pull requests
based on this
or my "devel" branch.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4
@ 2015-10-02  9:26   ` Linus Walleij
  0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-02  9:26 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-sh, linux-gpio

On Fri, Oct 2, 2015 at 1:25 AM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
>
>   Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4
>
> for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:
>
>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)
>
> Summary:
>   - Two fixes for incorrect pinmux data,
>   - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
>     Ethernet),
>   - Various cleanups.
>
> Most have been acked by Laurent and/or by you.

Awesome, pulled into the pinctrl "devel" branch, will push to the kernel zeroday
builder soon.

If you have more stuff and fixes coming just send more pull requests
based on this
or my "devel" branch.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4
  2015-10-02  9:26   ` Linus Walleij
@ 2015-10-02  9:39     ` Geert Uytterhoeven
  -1 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-02  9:39 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Geert Uytterhoeven, Laurent Pinchart, linux-sh, linux-gpio

Hi Linus,

On Fri, Oct 2, 2015 at 11:26 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Fri, Oct 2, 2015 at 1:25 AM, Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
>> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
>>
>>   Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4
>>
>> for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:
>>
>>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)
>>
>> Summary:
>>   - Two fixes for incorrect pinmux data,
>>   - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
>>     Ethernet),
>>   - Various cleanups.
>>
>> Most have been acked by Laurent and/or by you.
>
> Awesome, pulled into the pinctrl "devel" branch, will push to the kernel zeroday
> builder soon.

Thank you.

BTW, the zeroday builder consumed all of it earlier this week, but I had to
rebase to drop a few commits as per feedback from Laurent.

> If you have more stuff and fixes coming just send more pull requests
> based on this
> or my "devel" branch.

Good to know. Thanks!

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4
@ 2015-10-02  9:39     ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-02  9:39 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Geert Uytterhoeven, Laurent Pinchart, linux-sh, linux-gpio

Hi Linus,

On Fri, Oct 2, 2015 at 11:26 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Fri, Oct 2, 2015 at 1:25 AM, Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
>> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f:
>>
>>   Linux 4.3-rc1 (2015-09-12 16:35:56 -0700)
>>
>> are available in the git repository at:
>>
>>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4
>>
>> for you to fetch changes up to 819fd4bfcc84805c48291de511c917596e911ffa:
>>
>>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)
>>
>> Summary:
>>   - Two fixes for incorrect pinmux data,
>>   - Initial r8a7795 (R-Car H3) support (incl. serial, I2C, audio,
>>     Ethernet),
>>   - Various cleanups.
>>
>> Most have been acked by Laurent and/or by you.
>
> Awesome, pulled into the pinctrl "devel" branch, will push to the kernel zeroday
> builder soon.

Thank you.

BTW, the zeroday builder consumed all of it earlier this week, but I had to
rebase to drop a few commits as per feedback from Laurent.

> If you have more stuff and fixes coming just send more pull requests
> based on this
> or my "devel" branch.

Good to know. Thanks!

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.4 (take two)
@ 2015-10-20 19:01   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-20 19:01 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 819fd4bfcc84805c48291de511c917596e911ffa:

  pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4

for you to fetch changes up to 660c40bd9837854b3d3cc75e6ddb41cc8ac32a1d:

  pinctrl: sh-pfc: Remove obsolete r8a7778 platform_device_id entry (2015-10-20 16:11:27 +0200)

Summary:
  - r8a7794 VIN support,
  - r8a7778 bias (pull-up) support,
  - Obsolete platform_device_id removal,
  - Various cleanups and refactorings.

Most commits have been acked by Laurent and/or by you.
The USB commit has been acked by the relevant maintainers.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (5):
      pinctrl: sh-pfc: Rename .gpio_data[] to .pinmux_data[]
      usb: renesas_usbhs: Remove unneeded #include <linux/platform_data/gpio-rcar.h>
      pinctrl: sh-pfc: Stop including <linux/platform_data/gpio-rcar.h>
      pinctrl: sh-pfc: Remove obsolete r8a7779 platform_device_id entry
      pinctrl: sh-pfc: Remove obsolete r8a7778 platform_device_id entry

Koji Matsuoka (1):
      pinctrl: sh-pfc: r8a7794: Add VIN pin groups

Sergei Shtylyov (1):
      pinctrl: sh-pfc: r8a779[01]: Move 'union vin_data' to shared header file

Ulrich Hecht (2):
      pinctrl: sh-pfc: Add macros defining GP ports with config flags
      pinctrl: sh-pfc: r8a7778: Add bias (pull-up) pinconf support

 drivers/pinctrl/sh-pfc/core.c        |  10 +-
 drivers/pinctrl/sh-pfc/pfc-emev2.c   |   4 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c |   8 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c |   4 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7778.c | 266 ++++++++++++++++++++++++++++++++---
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |   5 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |  24 +---
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |  27 +---
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c | 189 ++++++++++++++++++++++++-
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c |   5 +-
 drivers/pinctrl/sh-pfc/pfc-sh7203.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7264.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7269.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7720.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7722.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7723.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7724.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7757.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7785.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7786.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-shx3.c    |   4 +-
 drivers/pinctrl/sh-pfc/sh_pfc.h      |  81 +++++++----
 drivers/usb/renesas_usbhs/rcar2.c    |   1 -
 25 files changed, 531 insertions(+), 145 deletions(-)

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.4 (take two)
@ 2015-10-20 19:01   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-10-20 19:01 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 819fd4bfcc84805c48291de511c917596e911ffa:

  pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.4

for you to fetch changes up to 660c40bd9837854b3d3cc75e6ddb41cc8ac32a1d:

  pinctrl: sh-pfc: Remove obsolete r8a7778 platform_device_id entry (2015-10-20 16:11:27 +0200)

Summary:
  - r8a7794 VIN support,
  - r8a7778 bias (pull-up) support,
  - Obsolete platform_device_id removal,
  - Various cleanups and refactorings.

Most commits have been acked by Laurent and/or by you.
The USB commit has been acked by the relevant maintainers.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (5):
      pinctrl: sh-pfc: Rename .gpio_data[] to .pinmux_data[]
      usb: renesas_usbhs: Remove unneeded #include <linux/platform_data/gpio-rcar.h>
      pinctrl: sh-pfc: Stop including <linux/platform_data/gpio-rcar.h>
      pinctrl: sh-pfc: Remove obsolete r8a7779 platform_device_id entry
      pinctrl: sh-pfc: Remove obsolete r8a7778 platform_device_id entry

Koji Matsuoka (1):
      pinctrl: sh-pfc: r8a7794: Add VIN pin groups

Sergei Shtylyov (1):
      pinctrl: sh-pfc: r8a779[01]: Move 'union vin_data' to shared header file

Ulrich Hecht (2):
      pinctrl: sh-pfc: Add macros defining GP ports with config flags
      pinctrl: sh-pfc: r8a7778: Add bias (pull-up) pinconf support

 drivers/pinctrl/sh-pfc/core.c        |  10 +-
 drivers/pinctrl/sh-pfc/pfc-emev2.c   |   4 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c |   8 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c |   4 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7778.c | 266 ++++++++++++++++++++++++++++++++---
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |   5 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |  24 +---
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |  27 +---
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c | 189 ++++++++++++++++++++++++-
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c |   5 +-
 drivers/pinctrl/sh-pfc/pfc-sh7203.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7264.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7269.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7720.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7722.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7723.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7724.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7757.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7785.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-sh7786.c  |   4 +-
 drivers/pinctrl/sh-pfc/pfc-shx3.c    |   4 +-
 drivers/pinctrl/sh-pfc/sh_pfc.h      |  81 +++++++----
 drivers/usb/renesas_usbhs/rcar2.c    |   1 -
 25 files changed, 531 insertions(+), 145 deletions(-)

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4 (take two)
  2015-10-20 19:01   ` Geert Uytterhoeven
@ 2015-10-26 13:50     ` Linus Walleij
  -1 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-26 13:50 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Tue, Oct 20, 2015 at 9:01 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 819fd4bfcc84805c48291de511c917596e911ffa:
>
>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

I've pulled this in and pushed to the kernel autobuilders.

Thanks a lot for your efforts Geert!

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.4 (take two)
@ 2015-10-26 13:50     ` Linus Walleij
  0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-10-26 13:50 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Tue, Oct 20, 2015 at 9:01 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 819fd4bfcc84805c48291de511c917596e911ffa:
>
>   pinctrl: sh-pfc: r8a7795: add EtherAVB support (2015-10-02 09:54:41 +0200)

I've pulled this in and pushed to the kernel autobuilders.

Thanks a lot for your efforts Geert!

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.5
@ 2015-12-10 13:04   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 13:04 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:

  Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5

for you to fetch changes up to f27200f9dce59ce5063bf722ef6ccedd34e4357b:

  pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)

Summary:
  - r8a7791: Add support for SCIF_CLK,
  - r8a7795: Add support for HSCIF, MSIOF, and SCIF_CLK,
  - sh73a0: Add support for MSIOF,
  - Assorted fixes, cleanups and consolidatons.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (19):
      pinctrl: sh-pfc: Add PINMUX_SINGLE()
      pinctrl: sh-pfc: r8a7790: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7791: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7794: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent
      pinctrl: sh-pfc: r8a7795: Rename SEL_SCIF to SEL_SATA
      pinctrl: sh-pfc: r8a7795: Add HSCIF pins, groups, and functions
      pinctrl: sh-pfc: emev2: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7778: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7779: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: sh7734: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7795: Add pinmux data for single-function pins
      pinctrl: sh-pfc: r8a7795: Add MSIOF pins, groups, and functions
      pinctrl: sh-pfc: emev2: Correct comment for CFI data pins
      pinctrl: sh-pfc: r8a7740: Correct comment for LCD1 data pins
      pinctrl: sh-pfc: sh73a0: Correct comment for LCD2 data pins
      pinctrl: sh-pfc: sh73a0: Add MSIOF support
      pinctrl: sh-pfc: r8a7791: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support

Kuninori Morimoto (1):
      pinctrl: sh-pfc: Share/reuse same PORT_GP_x() macros

 drivers/pinctrl/sh-pfc/pfc-emev2.c   |  136 ++--
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c |    2 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7778.c |   22 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |   21 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |   35 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |   74 ++-
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c |   63 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 1207 ++++++++++++++++++++++++++++++++--
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c  |  548 ++++++++++++++-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c  |   29 +-
 drivers/pinctrl/sh-pfc/sh_pfc.h      |   74 ++-
 11 files changed, 1949 insertions(+), 262 deletions(-)

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.5
@ 2015-12-10 13:04   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 13:04 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:

  Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5

for you to fetch changes up to f27200f9dce59ce5063bf722ef6ccedd34e4357b:

  pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)

Summary:
  - r8a7791: Add support for SCIF_CLK,
  - r8a7795: Add support for HSCIF, MSIOF, and SCIF_CLK,
  - sh73a0: Add support for MSIOF,
  - Assorted fixes, cleanups and consolidatons.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (19):
      pinctrl: sh-pfc: Add PINMUX_SINGLE()
      pinctrl: sh-pfc: r8a7790: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7791: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7794: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7795: Make PORT_GP_x() macros consistent
      pinctrl: sh-pfc: r8a7795: Rename SEL_SCIF to SEL_SATA
      pinctrl: sh-pfc: r8a7795: Add HSCIF pins, groups, and functions
      pinctrl: sh-pfc: emev2: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7778: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7779: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: sh7734: Use PINMUX_SINGLE() instead of raw PINMUX_DATA()
      pinctrl: sh-pfc: r8a7795: Add pinmux data for single-function pins
      pinctrl: sh-pfc: r8a7795: Add MSIOF pins, groups, and functions
      pinctrl: sh-pfc: emev2: Correct comment for CFI data pins
      pinctrl: sh-pfc: r8a7740: Correct comment for LCD1 data pins
      pinctrl: sh-pfc: sh73a0: Correct comment for LCD2 data pins
      pinctrl: sh-pfc: sh73a0: Add MSIOF support
      pinctrl: sh-pfc: r8a7791: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support

Kuninori Morimoto (1):
      pinctrl: sh-pfc: Share/reuse same PORT_GP_x() macros

 drivers/pinctrl/sh-pfc/pfc-emev2.c   |  136 ++--
 drivers/pinctrl/sh-pfc/pfc-r8a7740.c |    2 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7778.c |   22 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |   21 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |   35 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |   74 ++-
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c |   63 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 1207 ++++++++++++++++++++++++++++++++--
 drivers/pinctrl/sh-pfc/pfc-sh73a0.c  |  548 ++++++++++++++-
 drivers/pinctrl/sh-pfc/pfc-sh7734.c  |   29 +-
 drivers/pinctrl/sh-pfc/sh_pfc.h      |   74 ++-
 11 files changed, 1949 insertions(+), 262 deletions(-)

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.5
  2015-12-10 13:04   ` Geert Uytterhoeven
@ 2015-12-10 14:42     ` Linus Walleij
  -1 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-12-10 14:42 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Thu, Dec 10, 2015 at 2:04 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:
>
>   Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5
>
> for you to fetch changes up to f27200f9dce59ce5063bf722ef6ccedd34e4357b:
>
>   pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)
>
> Summary:
>   - r8a7791: Add support for SCIF_CLK,
>   - r8a7795: Add support for HSCIF, MSIOF, and SCIF_CLK,
>   - sh73a0: Add support for MSIOF,
>   - Assorted fixes, cleanups and consolidatons.
>
> Thanks for pulling!

Pulled this to my devel branch in the pin control tree, thanks!

And I see there are already more patches brewing...

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.5
@ 2015-12-10 14:42     ` Linus Walleij
  0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-12-10 14:42 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Thu, Dec 10, 2015 at 2:04 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

>         Hi Linus,
>
> The following changes since commit 8005c49d9aea74d382f474ce11afbbc7d7130bec:
>
>   Linux 4.4-rc1 (2015-11-15 17:00:27 -0800)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5
>
> for you to fetch changes up to f27200f9dce59ce5063bf722ef6ccedd34e4357b:
>
>   pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)
>
> Summary:
>   - r8a7791: Add support for SCIF_CLK,
>   - r8a7795: Add support for HSCIF, MSIOF, and SCIF_CLK,
>   - sh73a0: Add support for MSIOF,
>   - Assorted fixes, cleanups and consolidatons.
>
> Thanks for pulling!

Pulled this to my devel branch in the pin control tree, thanks!

And I see there are already more patches brewing...

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.5 (take two)
@ 2015-12-18 13:48   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-12-18 13:48 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit f27200f9dce59ce5063bf722ef6ccedd34e4357b:

  pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5

for you to fetch changes up to 1a4ca6dd3dc8551fc0288ec76d046700366d7683:

  MAINTAINERS: Add co-maintainer for Renesas Pin Controllers (2015-12-17 10:41:23 +0100)

Summary:
  - r8a7779/r8a7790/r8a7794: Add support for SCIF_CLK,
  - r8a7791: Add support for EtherAVB,
  - r8a7795: Add support for SATA and SDHI,
  - Add myself as co-maintainer for Renesas Pin Controllers.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (4):
      pinctrl: sh-pfc: r8a7779: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7790: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7794: Add SCIF_CLK support
      MAINTAINERS: Add co-maintainer for Renesas Pin Controllers

Sergei Shtylyov (1):
      pinctrl: sh-pfc: r8a7791: add EtherAVB pin groups

Takeshi Kihara (2):
      pinctrl: sh-pfc: r8a7795: Add SDHI support
      pinctrl: sh-pfc: r8a7795: Add SATA support

 MAINTAINERS                          |   1 +
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |  41 +++++
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |  23 +++
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |  93 +++++++++++
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c |  23 +++
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 298 +++++++++++++++++++++++++++++++++++
 6 files changed, 479 insertions(+)

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [git pull] pinctrl: sh-pfc: Updates for v4.5 (take two)
@ 2015-12-18 13:48   ` Geert Uytterhoeven
  0 siblings, 0 replies; 18+ messages in thread
From: Geert Uytterhoeven @ 2015-12-18 13:48 UTC (permalink / raw)
  To: Linus Walleij; +Cc: Laurent Pinchart, linux-gpio, linux-sh, Geert Uytterhoeven

	Hi Linus,

The following changes since commit f27200f9dce59ce5063bf722ef6ccedd34e4357b:

  pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git sh-pfc-for-v4.5

for you to fetch changes up to 1a4ca6dd3dc8551fc0288ec76d046700366d7683:

  MAINTAINERS: Add co-maintainer for Renesas Pin Controllers (2015-12-17 10:41:23 +0100)

Summary:
  - r8a7779/r8a7790/r8a7794: Add support for SCIF_CLK,
  - r8a7791: Add support for EtherAVB,
  - r8a7795: Add support for SATA and SDHI,
  - Add myself as co-maintainer for Renesas Pin Controllers.

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (4):
      pinctrl: sh-pfc: r8a7779: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7790: Add SCIF_CLK support
      pinctrl: sh-pfc: r8a7794: Add SCIF_CLK support
      MAINTAINERS: Add co-maintainer for Renesas Pin Controllers

Sergei Shtylyov (1):
      pinctrl: sh-pfc: r8a7791: add EtherAVB pin groups

Takeshi Kihara (2):
      pinctrl: sh-pfc: r8a7795: Add SDHI support
      pinctrl: sh-pfc: r8a7795: Add SATA support

 MAINTAINERS                          |   1 +
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c |  41 +++++
 drivers/pinctrl/sh-pfc/pfc-r8a7790.c |  23 +++
 drivers/pinctrl/sh-pfc/pfc-r8a7791.c |  93 +++++++++++
 drivers/pinctrl/sh-pfc/pfc-r8a7794.c |  23 +++
 drivers/pinctrl/sh-pfc/pfc-r8a7795.c | 298 +++++++++++++++++++++++++++++++++++
 6 files changed, 479 insertions(+)

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.5 (take two)
  2015-12-18 13:48   ` Geert Uytterhoeven
@ 2015-12-22  8:49     ` Linus Walleij
  -1 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-12-22  8:49 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Fri, Dec 18, 2015 at 2:48 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> The following changes since commit f27200f9dce59ce5063bf722ef6ccedd34e4357b:
>
>   pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)
>
> are available in the git repository at:

Pulled into the pinctrl "devel" branch for v4.5, thanks!

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [git pull] pinctrl: sh-pfc: Updates for v4.5 (take two)
@ 2015-12-22  8:49     ` Linus Walleij
  0 siblings, 0 replies; 18+ messages in thread
From: Linus Walleij @ 2015-12-22  8:49 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, linux-gpio, linux-sh

On Fri, Dec 18, 2015 at 2:48 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> The following changes since commit f27200f9dce59ce5063bf722ef6ccedd34e4357b:
>
>   pinctrl: sh-pfc: r8a7795: Add SCIF_CLK support (2015-12-08 14:18:45 +0100)
>
> are available in the git repository at:

Pulled into the pinctrl "devel" branch for v4.5, thanks!

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2015-12-22  8:49 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-02  8:25 [git pull] pinctrl: sh-pfc: Updates for v4.4 Geert Uytterhoeven
2015-10-02  8:25 ` Geert Uytterhoeven
2015-10-02  9:26 ` Linus Walleij
2015-10-02  9:26   ` Linus Walleij
2015-10-02  9:39   ` Geert Uytterhoeven
2015-10-02  9:39     ` Geert Uytterhoeven
2015-10-20 19:01 ` [git pull] pinctrl: sh-pfc: Updates for v4.4 (take two) Geert Uytterhoeven
2015-10-20 19:01   ` Geert Uytterhoeven
2015-10-26 13:50   ` Linus Walleij
2015-10-26 13:50     ` Linus Walleij
2015-12-10 13:04 ` [git pull] pinctrl: sh-pfc: Updates for v4.5 Geert Uytterhoeven
2015-12-10 13:04   ` Geert Uytterhoeven
2015-12-10 14:42   ` Linus Walleij
2015-12-10 14:42     ` Linus Walleij
2015-12-18 13:48 ` [git pull] pinctrl: sh-pfc: Updates for v4.5 (take two) Geert Uytterhoeven
2015-12-18 13:48   ` Geert Uytterhoeven
2015-12-22  8:49   ` Linus Walleij
2015-12-22  8:49     ` Linus Walleij

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.