* Re: [PATCH] emev2: GPIOLIB: Enable support for OF
[not found] ` <1377623069-32678-2-git-send-email-ian.molton@codethink.co.uk>
@ 2013-08-29 17:41 ` Linus Walleij
2013-08-30 3:47 ` Simon Horman
0 siblings, 1 reply; 20+ messages in thread
From: Linus Walleij @ 2013-08-29 17:41 UTC (permalink / raw)
To: Ian Molton; +Cc: linux-gpio@vger.kernel.org, linux-sh@vger.kernel.org
On Tue, Aug 27, 2013 at 7:04 PM, Ian Molton <ian.molton@codethink.co.uk> wrote:
> Signed-off-by: Ian Molton <ian.molton@codethink.co.uk>
> ---
> drivers/gpio/gpio-em.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c
> index 5cba855..279821e 100644
> --- a/drivers/gpio/gpio-em.c
> +++ b/drivers/gpio/gpio-em.c
> @@ -303,6 +303,7 @@ static int em_gio_probe(struct platform_device *pdev)
> }
>
> gpio_chip = &p->gpio_chip;
> + gpio_chip->of_node = pdev->dev.of_node;
This doesn't work on non-DT compiles.
Look at struct gpio_chip:
#if defined(CONFIG_OF_GPIO)
/*
* If CONFIG_OF is enabled, then all GPIO controllers described in the
* device tree automatically may have an OF translation
*/
struct device_node *of_node;
int of_gpio_n_cells;
int (*of_xlate)(struct gpio_chip *gc,
const struct of_phandle_args *gpiospec, u32 *flags);
#endif
Either the statement needs to be inside #ifdef CONFIG_OF_GPIO
or the Emma driver need to select OF_GPIO in its Kconfig
entry.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH] emev2: GPIOLIB: Enable support for OF
2013-08-29 17:41 ` [PATCH] emev2: GPIOLIB: Enable support for OF Linus Walleij
@ 2013-08-30 3:47 ` Simon Horman
2013-08-30 7:48 ` Linus Walleij
0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2013-08-30 3:47 UTC (permalink / raw)
To: Linus Walleij
Cc: Ian Molton, linux-gpio@vger.kernel.org, linux-sh@vger.kernel.org
On Thu, Aug 29, 2013 at 07:41:42PM +0200, Linus Walleij wrote:
> On Tue, Aug 27, 2013 at 7:04 PM, Ian Molton <ian.molton@codethink.co.uk> wrote:
>
> > Signed-off-by: Ian Molton <ian.molton@codethink.co.uk>
> > ---
> > drivers/gpio/gpio-em.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c
> > index 5cba855..279821e 100644
> > --- a/drivers/gpio/gpio-em.c
> > +++ b/drivers/gpio/gpio-em.c
> > @@ -303,6 +303,7 @@ static int em_gio_probe(struct platform_device *pdev)
> > }
> >
> > gpio_chip = &p->gpio_chip;
> > + gpio_chip->of_node = pdev->dev.of_node;
>
> This doesn't work on non-DT compiles.
>
> Look at struct gpio_chip:
>
> #if defined(CONFIG_OF_GPIO)
> /*
> * If CONFIG_OF is enabled, then all GPIO controllers described in the
> * device tree automatically may have an OF translation
> */
> struct device_node *of_node;
> int of_gpio_n_cells;
> int (*of_xlate)(struct gpio_chip *gc,
> const struct of_phandle_args *gpiospec, u32 *flags);
> #endif
>
> Either the statement needs to be inside #ifdef CONFIG_OF_GPIO
> or the Emma driver need to select OF_GPIO in its Kconfig
> entry.
This may be somewhat naieve, but it seems to me that the latter would be a
better choice at this stage because AFIK the only in-tree emev2 board is
the kzm9d and it uses USE_OF.
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH] emev2: GPIOLIB: Enable support for OF
2013-08-30 3:47 ` Simon Horman
@ 2013-08-30 7:48 ` Linus Walleij
2013-09-02 15:44 ` (unknown), Ian Molton
0 siblings, 1 reply; 20+ messages in thread
From: Linus Walleij @ 2013-08-30 7:48 UTC (permalink / raw)
To: Simon Horman
Cc: Ian Molton, linux-gpio@vger.kernel.org, linux-sh@vger.kernel.org
On Fri, Aug 30, 2013 at 5:47 AM, Simon Horman <horms@verge.net.au> wrote:
> On Thu, Aug 29, 2013 at 07:41:42PM +0200, Linus Walleij wrote:
>> Either the statement needs to be inside #ifdef CONFIG_OF_GPIO
>> or the Emma driver need to select OF_GPIO in its Kconfig
>> entry.
>
> This may be somewhat naieve, but it seems to me that the latter would be a
> better choice at this stage because AFIK the only in-tree emev2 board is
> the kzm9d and it uses USE_OF.
I think you're right. Ian can you cook a patch that also selects
OF_GPIO for this controller in Kconfig?
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
2013-08-30 7:48 ` Linus Walleij
@ 2013-09-02 15:44 ` Ian Molton
2013-09-02 15:44 ` [PATCH] emev2: GPIOLIB: Enable support for OF Ian Molton
0 siblings, 1 reply; 20+ messages in thread
From: Ian Molton @ 2013-09-02 15:44 UTC (permalink / raw)
To: linus.walleij; +Cc: horms, linux-gpio
Patch updated to depend on OF_GPIO as suggested. The only other driver using
OF_GPIO depends, rather than selects the symbol, so I have also.
-Ian
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH] emev2: GPIOLIB: Enable support for OF
2013-09-02 15:44 ` (unknown), Ian Molton
@ 2013-09-02 15:44 ` Ian Molton
2013-09-04 5:07 ` Simon Horman
2013-09-19 13:34 ` Linus Walleij
0 siblings, 2 replies; 20+ messages in thread
From: Ian Molton @ 2013-09-02 15:44 UTC (permalink / raw)
To: linus.walleij; +Cc: horms, linux-gpio, Ian Molton
EMEV2 is now a DT platform, however the GPIO driver cannot be used
from a DT file since it does not fill out the of_node field in its
gpio_chip structure.
Signed-off-by: Ian Molton <ian.molton@codethink.co.uk>
---
drivers/gpio/Kconfig | 2 +-
drivers/gpio/gpio-em.c | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b2450ba..58e043d 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -129,7 +129,7 @@ config GPIO_IT8761E
config GPIO_EM
tristate "Emma Mobile GPIO"
- depends on ARM
+ depends on ARM && OF_GPIO
help
Say yes here to support GPIO on Renesas Emma Mobile SoCs.
diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c
index 5cba855..279821e 100644
--- a/drivers/gpio/gpio-em.c
+++ b/drivers/gpio/gpio-em.c
@@ -303,6 +303,7 @@ static int em_gio_probe(struct platform_device *pdev)
}
gpio_chip = &p->gpio_chip;
+ gpio_chip->of_node = pdev->dev.of_node;
gpio_chip->direction_input = em_gio_direction_input;
gpio_chip->get = em_gio_get;
gpio_chip->direction_output = em_gio_direction_output;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 20+ messages in thread
* Re: [PATCH] emev2: GPIOLIB: Enable support for OF
2013-09-02 15:44 ` [PATCH] emev2: GPIOLIB: Enable support for OF Ian Molton
@ 2013-09-04 5:07 ` Simon Horman
2013-09-19 13:34 ` Linus Walleij
1 sibling, 0 replies; 20+ messages in thread
From: Simon Horman @ 2013-09-04 5:07 UTC (permalink / raw)
To: Ian Molton; +Cc: linus.walleij, linux-gpio, Magnus Damm
[ CC Magnus ]
On Mon, Sep 02, 2013 at 04:44:55PM +0100, Ian Molton wrote:
> EMEV2 is now a DT platform, however the GPIO driver cannot be used
> from a DT file since it does not fill out the of_node field in its
> gpio_chip structure.
>
> Signed-off-by: Ian Molton <ian.molton@codethink.co.uk>
I have no objections to this.
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> drivers/gpio/Kconfig | 2 +-
> drivers/gpio/gpio-em.c | 1 +
> 2 files changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index b2450ba..58e043d 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -129,7 +129,7 @@ config GPIO_IT8761E
>
> config GPIO_EM
> tristate "Emma Mobile GPIO"
> - depends on ARM
> + depends on ARM && OF_GPIO
> help
> Say yes here to support GPIO on Renesas Emma Mobile SoCs.
>
> diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c
> index 5cba855..279821e 100644
> --- a/drivers/gpio/gpio-em.c
> +++ b/drivers/gpio/gpio-em.c
> @@ -303,6 +303,7 @@ static int em_gio_probe(struct platform_device *pdev)
> }
>
> gpio_chip = &p->gpio_chip;
> + gpio_chip->of_node = pdev->dev.of_node;
> gpio_chip->direction_input = em_gio_direction_input;
> gpio_chip->get = em_gio_get;
> gpio_chip->direction_output = em_gio_direction_output;
> --
> 1.7.10.4
>
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH] emev2: GPIOLIB: Enable support for OF
2013-09-02 15:44 ` [PATCH] emev2: GPIOLIB: Enable support for OF Ian Molton
2013-09-04 5:07 ` Simon Horman
@ 2013-09-19 13:34 ` Linus Walleij
1 sibling, 0 replies; 20+ messages in thread
From: Linus Walleij @ 2013-09-19 13:34 UTC (permalink / raw)
To: Ian Molton; +Cc: Simon Horman, linux-gpio@vger.kernel.org
On Mon, Sep 2, 2013 at 5:44 PM, Ian Molton <ian.molton@codethink.co.uk> wrote:
> EMEV2 is now a DT platform, however the GPIO driver cannot be used
> from a DT file since it does not fill out the of_node field in its
> gpio_chip structure.
>
> Signed-off-by: Ian Molton <ian.molton@codethink.co.uk>
This v2 version applied with Simon's ACK.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 20+ messages in thread
[parent not found: <1570038211.167595.1414613146892.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>]
* (unknown),
@ 2015-08-11 6:04 Alfred Cheuk Chow
0 siblings, 0 replies; 20+ messages in thread
From: Alfred Cheuk Chow @ 2015-08-11 6:04 UTC (permalink / raw)
--
Good Day,
I am Mr. Alfred Cheuk Yu Chow, the Director for Credit & Marketing Chong
Hing Bank, Hong Kong, Chong Hing Bank Centre, 24 Des Voeux Road Central,
Hong Kong. I have a business proposal of $38,980,369.00 (Thirty Eight
Million, Nine Hundred and Eighty Thousand, Three Hundred and Sixty Nine
USD) only for you to transact with me from my bank to your country.
All confirmable documents to back up the claims will be made available to
you prior to your acceptance and as soon as I receive your return mail Via
my email address: alfred.chow101@gmail.com and I will let you know what is
required of you.
Your earliest response to this letter will be appreciated.
Best Regards,
Alfred Chow
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2015-08-20 11:14 Alfred Cheuk Chow
0 siblings, 0 replies; 20+ messages in thread
From: Alfred Cheuk Chow @ 2015-08-20 11:14 UTC (permalink / raw)
--
I am Mr. Alfred Cheuk Yu Chow, the Director for Credit & Marketing Chong Hing Bank, Hong Kong, Chong Hing Bank Centre, 24 Des Voeux Road Central, Hong Kong. I have a business proposal of $38,980,369.00All conformable documents to back up the claims will be made available to you prior to your acceptance and as soon as I receive your return mail and I will let you know what is required of you.
Best Regards,
Alfred Chow
Tel: +85258032828
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2015-09-17 17:45 Alfred Cheuk Chow
0 siblings, 0 replies; 20+ messages in thread
From: Alfred Cheuk Chow @ 2015-09-17 17:45 UTC (permalink / raw)
Good Day,
I am Mr. Alfred Cheuk Yu Chow, the Director for Credit & Marketing Chong Hing Bank, Hong Kong, Chong Hing Bank Centre, 24 Des Voeux Road Central, Hong Kong. I have a business proposal of $38,980,369.00 (Thirty Eight Million, Nine Hundred and Eighty Thousand, Three Hundred and Sixty Nine USD) only for you to transact with me from my bank to your country.
All confirmable documents to back up the claims will be made available to you prior to your acceptance and as soon as I receive your return mail Via my email address: alfred.chow101@gmail.com and I will let you know what is required of you.
Your earliest response to this letter will be appreciated.
Best Regards,
Alfred Chow
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2015-12-16 16:15 Alicia Polanco
0 siblings, 0 replies; 20+ messages in thread
From: Alicia Polanco @ 2015-12-16 16:15 UTC (permalink / raw)
To: Info
This is to re-notify you of the $8,564 USD that was deposited here in
the Western Union office in your name.We have successfully complete
your fund transfer to you, You should contact Transaction Manager
Monica Winks to collect your money transfer control number (M.T.C.N).
Contact Email: mvv.dept@gmail.com
Contact Person: Monica Winks
Awaiting your quick response.
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2016-06-22 13:56 Charles Ethan
0 siblings, 0 replies; 20+ messages in thread
From: Charles Ethan @ 2016-06-22 13:56 UTC (permalink / raw)
Excuse me please;Did you receive my previous email.Charles Ethan
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2016-10-22 17:11 Aisha Aisha
0 siblings, 0 replies; 20+ messages in thread
From: Aisha Aisha @ 2016-10-22 17:11 UTC (permalink / raw)
I pray this mail reach you in good faith, I need you to assist me
relocate $9 Million to your country through your bank account and you
will be rewarded with 30% of the sum once the transaction is
successfully done, let me know if you are capable to handle the
project so that i will give you details.
Regards,
Aisha G.
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2017-04-28 8:20 Anatolij Gustschin
0 siblings, 0 replies; 20+ messages in thread
From: Anatolij Gustschin @ 2017-04-28 8:20 UTC (permalink / raw)
To: linus.walleij, gnurou; +Cc: andy.shevchenko, linux-gpio, linux-kernel
Subject: [PATCH v3] gpiolib: Add stubs for gpiod lookup table interface
Add stubs for gpiod_add_lookup_table() and gpiod_remove_lookup_table()
for the !GPIOLIB case to prevent build errors. Also add prototypes.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
---
Changes in v3:
- add stubs for !GPIOLIB case. Drop prototypes, these are
already in gpio/machine.h
Changes in v2:
- move gpiod_lookup_table out of #ifdef
include/linux/gpio/consumer.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/linux/gpio/consumer.h b/include/linux/gpio/consumer.h
index 8f702fc..cf3fee2 100644
--- a/include/linux/gpio/consumer.h
+++ b/include/linux/gpio/consumer.h
@@ -41,6 +41,8 @@ enum gpiod_flags {
GPIOD_FLAGS_BIT_DIR_VAL,
};
+struct gpiod_lookup_table;
+
#ifdef CONFIG_GPIOLIB
/* Return the number of GPIOs associated with a device / function */
@@ -435,6 +437,12 @@ struct gpio_desc *devm_fwnode_get_index_gpiod_from_child(struct device *dev,
return ERR_PTR(-ENOSYS);
}
+static inline
+void gpiod_add_lookup_table(struct gpiod_lookup_table *table) {}
+
+static inline
+void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) {}
+
#endif /* CONFIG_GPIOLIB */
static inline
--
2.7.4
^ permalink raw reply related [flat|nested] 20+ messages in thread
* (unknown),
@ 2017-06-24 0:04 hastpass
0 siblings, 0 replies; 20+ messages in thread
From: hastpass @ 2017-06-24 0:04 UTC (permalink / raw)
To: linux-gpio
[-- Attachment #1: EMAIL_847312_linux-gpio.zip --]
[-- Type: application/zip, Size: 3509 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown)
@ 2017-08-01 10:07 Chris Ruehl
0 siblings, 0 replies; 20+ messages in thread
From: Chris Ruehl @ 2017-08-01 10:07 UTC (permalink / raw)
To: linux-gpio@vger.kernel.org
unsubscribe linux-gpio
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2017-10-12 13:53 Andrew Clement
0 siblings, 0 replies; 20+ messages in thread
From: Andrew Clement @ 2017-10-12 13:53 UTC (permalink / raw)
I sent a message to you before which i am still waiting for your
respones please do reply me.
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown),
@ 2018-02-13 22:57 Alfred Cheuk Chow
0 siblings, 0 replies; 20+ messages in thread
From: Alfred Cheuk Chow @ 2018-02-13 22:57 UTC (permalink / raw)
Good Day,
I am Mr. Alfred Cheuk Yu Chow, the Director for Credit & Marketing Chong
Hing Bank, Hong Kong, Chong Hing Bank Center, 24 Des Voeux Road Central,
Hong Kong. I have a business proposal of $ 38,980,369.00.
All confirmable documents to back up the claims will be made available
to you prior to your acceptance and as soon as I receive your return
mail.
Best Regards,
Alfred Chow.
^ permalink raw reply [flat|nested] 20+ messages in thread
* (unknown)
@ 2019-03-21 1:51 zhuchangchun
0 siblings, 0 replies; 20+ messages in thread
From: zhuchangchun @ 2019-03-21 1:51 UTC (permalink / raw)
To: linux-kernel, linux-gpio
subscribe linux-kernel
^ permalink raw reply [flat|nested] 20+ messages in thread
end of thread, other threads:[~2019-03-21 1:51 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1377623069-32678-1-git-send-email-ian.molton@codethink.co.uk>
[not found] ` <1377623069-32678-2-git-send-email-ian.molton@codethink.co.uk>
2013-08-29 17:41 ` [PATCH] emev2: GPIOLIB: Enable support for OF Linus Walleij
2013-08-30 3:47 ` Simon Horman
2013-08-30 7:48 ` Linus Walleij
2013-09-02 15:44 ` (unknown), Ian Molton
2013-09-02 15:44 ` [PATCH] emev2: GPIOLIB: Enable support for OF Ian Molton
2013-09-04 5:07 ` Simon Horman
2013-09-19 13:34 ` Linus Walleij
[not found] <1570038211.167595.1414613146892.JavaMail.yahoo@jws10056.mail.ne1.yahoo.com>
[not found] ` <1835234304.171617.1414613165674.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <1938862685.172387.1414613200459.JavaMail.yahoo@jws100180.mail.ne1.yahoo.com>
[not found] ` <705402329.170339.1414613213653.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
[not found] ` <760168749.169371.1414613227586.JavaMail.yahoo@jws10082.mail.ne1.yahoo.com>
[not found] ` <1233923671.167957.1414613439879.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
[not found] ` <925985882.172122.1414613520734.JavaMail.yahoo@jws100207.mail.ne1.yahoo.com>
[not found] ` <1216694778.172990.1414613570775.JavaMail.yahoo@jws100152.mail.ne1.yahoo.com>
[not found] ` <1213035306.169838.1414613612716.JavaMail.yahoo@jws10097.mail.ne1.yahoo.com>
[not found] ` <2058591563.172973.1414613668636.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <1202030640.175493 .1414613712352.JavaMail.yahoo@jws10036.mail.ne1.yahoo.com>
[not found] ` <1111049042.175610.1414613739099.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <574125160.175950.1414613784216.JavaMail.yahoo@jws100158.mail.ne1.yahoo.com>
[not found] ` <1726966600.175552.1414613846198.JavaMail.yahoo@jws100190.mail.ne1.yahoo.com>
[not found] ` <976499752.219775.1414613888129.JavaMail.yahoo@jws100101.mail.ne1.yahoo.com>
[not found] ` <1400960529.171566.1414613936238.JavaMail.yahoo@jws10059.mail.ne1.yahoo.com>
[not found] ` <1333619289.175040.1414613999304.JavaMail.yahoo@jws100196.mail.ne1.yahoo.com>
[not found] ` <1038759122.176173.1414614054070.JavaMail.yahoo@jws100138.mail.ne1.yahoo.com>
[not found] ` <1109995533.176150.1414614101940.JavaMail.yahoo@jws100140.mail.ne1.yahoo.com>
[not found] ` <809474730.174920.1414614143971.JavaMail.yahoo@jws100154.mail.ne1.yahoo.com>
[not found] ` <1234226428.170349.1414614189490.JavaMail .yahoo@jws10056.mail.ne1.yahoo.com>
[not found] ` <1122464611.177103.1414614228916.JavaMail.yahoo@jws100161.mail.ne1.yahoo.com>
[not found] ` <1350859260.174219.1414614279095.JavaMail.yahoo@jws100176.mail.ne1.yahoo.com>
[not found] ` <1730751880.171557.1414614322033.JavaMail.yahoo@jws10060.mail.ne1.yahoo.com>
[not found] ` <642429550.177328.1414614367628.JavaMail.yahoo@jws100165.mail.ne1.yahoo.com>
[not found] ` <1400780243.20511.1414614418178.JavaMail.yahoo@jws100162.mail.ne1.yahoo.com>
[not found] ` <2025652090.173204.1414614462119.JavaMail.yahoo@jws10087.mail.ne1.yahoo.com>
[not found] ` <859211720.180077.1414614521867.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
[not found] ` <258705675.173585.1414614563057.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
[not found] ` <1773234186.173687.1414614613736.JavaMail.yahoo@jws10078.mail.ne1.yahoo.com>
[not found] ` <1132079010.173033.1414614645153.JavaMail.yahoo@jws10066.mail.ne1.ya hoo.com>
[not found] ` <1972302405.176488.1414614708676.JavaMail.yahoo@jws100166.mail.ne1.yahoo.com>
[not found] ` <1713123000.176308.1414614771694.JavaMail.yahoo@jws10045.mail.ne1.yahoo.com>
[not found] ` <299800233.173413.1414614817575.JavaMail.yahoo@jws10066.mail.ne1.yahoo.com>
[not found] ` <494469968.179875.1414614903152.JavaMail.yahoo@jws100144.mail.ne1.yahoo.com>
[not found] ` <2136945987.171995.1414614942776.JavaMail.yahoo@jws10091.mail.ne1.yahoo.com>
[not found] ` <257674219.177708.1414615022592.JavaMail.yahoo@jws100181.mail.ne1.yahoo.com>
[not found] ` <716927833.181664.1414615075308.JavaMail.yahoo@jws100145.mail.ne1.yahoo.com>
[not found] ` <874940984.178797.1414615132802.JavaMail.yahoo@jws100157.mail.ne1.yahoo.com>
[not found] ` <1283488887.176736.1414615187657.JavaMail.yahoo@jws100183.mail.ne1.yahoo.com>
[not found] ` <777665713.175887.1414615236293.JavaMail.yahoo@jws10083.mail.ne1.yahoo.com>
[not found] ` <585395776.176325.1 414615298260.JavaMail.yahoo@jws10033.mail.ne1.yahoo.com>
[not found] ` <178352191.221832.1414615355071.JavaMail.yahoo@jws100104.mail.ne1.yahoo.com>
[not found] ` <108454213.176606.1414615522058.JavaMail.yahoo@jws10053.mail.ne1.yahoo.com>
[not found] ` <1617229176.177502.1414615563724.JavaMail.yahoo@jws10030.mail.ne1.yahoo.com>
[not found] ` <324334617.178254.1414615625247.JavaMail.yahoo@jws10089.mail.ne1.yahoo.com>
[not found] ` <567135865.82376.1414615664442.JavaMail.yahoo@jws100136.mail.ne1.yahoo.com>
[not found] ` <764758300.179669.1414615711821.JavaMail.yahoo@jws100107.mail.ne1.yahoo.com>
[not found] ` <1072855470.183388.1414615775798.JavaMail.yahoo@jws100147.mail.ne1.yahoo.com>
[not found] ` <2134283632.173314.1414615831322.JavaMail.yahoo@jws10094.mail.ne1.yahoo.com>
[not found] ` <1454491902.178612.1414615875076.JavaMail.yahoo@jws100209.mail.ne1.yahoo.com>
[not found] ` <1480763910.146593.1414958012342.JavaMail.yahoo@jws10033.mail.ne1.yahoo.com>
2014-11-02 19:54 ` (unknown) MRS GRACE MANDA
2015-08-11 6:04 (unknown), Alfred Cheuk Chow
-- strict thread matches above, loose matches on Subject: below --
2015-08-20 11:14 (unknown), Alfred Cheuk Chow
2015-09-17 17:45 (unknown), Alfred Cheuk Chow
2015-12-16 16:15 (unknown), Alicia Polanco
2016-06-22 13:56 (unknown), Charles Ethan
2016-10-22 17:11 (unknown), Aisha Aisha
2017-04-28 8:20 (unknown), Anatolij Gustschin
2017-06-24 0:04 (unknown), hastpass
2017-08-01 10:07 (unknown) Chris Ruehl
2017-10-12 13:53 (unknown), Andrew Clement
2018-02-13 22:57 (unknown), Alfred Cheuk Chow
2019-03-21 1:51 (unknown) zhuchangchun
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).