* [PATCH v4 1/2] wire: export w1_touch_bit
@ 2017-07-10 22:59 Jan Kandziora
2017-07-13 15:13 ` Evgeniy Polyakov
0 siblings, 1 reply; 12+ messages in thread
From: Jan Kandziora @ 2017-07-10 22:59 UTC (permalink / raw)
To: LKML; +Cc: Evgeniy Polyakov, linux-i2c@vger.kernel.org
Changes in v4 against v3 in this subpatch:
- adapted to linux-4.12.0
No changes in v3 against v2,v1 in this subpatch.
The w1_ds28e17 driver from the next part of this patch needs to emit
single-bit read timeslots to the DS28E17. The w1 subsystem already
has this function but it is not exported outside drivers/w1/w1_io.c
This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
same as the other exported symbols in drivers/w1/w1_io.c
May be also useful later for writing drivers for other Onewire chips
which do single-bit communication.
Signed-off-by: Jan Kandziora <jjj@gmx.de>
---
>From 6aedd1b890bd77bfe788f6af7a38724c16934ab0 Mon Sep 17 00:00:00 2001
From: Jan Kandziora <jjj@gmx.de>
Date: Sat, 8 Jul 2017 21:14:27 +0200
Subject: [PATCH 1/2] wire: export w1_touch_bit
---
drivers/w1/w1.h | 1 +
drivers/w1/w1_io.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h
index 758a7a6..e7af855 100644
--- a/drivers/w1/w1.h
+++ b/drivers/w1/w1.h
@@ -295,6 +295,7 @@ int w1_attach_slave_device(struct w1_master *dev,
struct w1_reg_num *rn);
int w1_slave_detach(struct w1_slave *sl);
u8 w1_triplet(struct w1_master *dev, int bdir);
+u8 w1_touch_bit(struct w1_master *dev, int bit);
void w1_write_8(struct w1_master *, u8);
u8 w1_read_8(struct w1_master *);
int w1_reset_bus(struct w1_master *);
diff --git a/drivers/w1/w1_io.c b/drivers/w1/w1_io.c
index 1134e6b..4bb77a1 100644
--- a/drivers/w1/w1_io.c
+++ b/drivers/w1/w1_io.c
@@ -58,7 +58,7 @@ static u8 w1_read_bit(struct w1_master *dev);
* @dev: the master device
* @bit: 0 - write a 0, 1 - write a 0 read the level
*/
-static u8 w1_touch_bit(struct w1_master *dev, int bit)
+u8 w1_touch_bit(struct w1_master *dev, int bit)
{
if (dev->bus_master->touch_bit)
return dev->bus_master->touch_bit(dev->bus_master->data, bit);
@@ -69,6 +69,7 @@ static u8 w1_touch_bit(struct w1_master *dev, int bit)
return 0;
}
}
+EXPORT_SYMBOL_GPL(w1_touch_bit);
/**
* w1_write_bit() - Generates a write-0 or write-1 cycle.
--
2.13.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-07-10 22:59 [PATCH v4 1/2] wire: export w1_touch_bit Jan Kandziora
@ 2017-07-13 15:13 ` Evgeniy Polyakov
2017-07-17 14:47 ` Greg Kroah-Hartman
0 siblings, 1 reply; 12+ messages in thread
From: Evgeniy Polyakov @ 2017-07-13 15:13 UTC (permalink / raw)
To: Jan Kandziora, LKML, Greg Kroah-Hartman; +Cc: linux-i2c@vger.kernel.org
Hi Jan, Greg
11.07.2017, 02:00, "Jan Kandziora" <jjj@gmx.de>:
> Changes in v4 against v3 in this subpatch:
> - adapted to linux-4.12.0
>
> No changes in v3 against v2,v1 in this subpatch.
>
> The w1_ds28e17 driver from the next part of this patch needs to emit
> single-bit read timeslots to the DS28E17. The w1 subsystem already
> has this function but it is not exported outside drivers/w1/w1_io.c
>
> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
> same as the other exported symbols in drivers/w1/w1_io.c
>
> May be also useful later for writing drivers for other Onewire chips
> which do single-bit communication.
>
> Signed-off-by: Jan Kandziora <jjj@gmx.de>
Greg, please pull this patchset into the tree, I missed it last time and it stuck in the queues for a too long.
Thank you.
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
> ---
> From 6aedd1b890bd77bfe788f6af7a38724c16934ab0 Mon Sep 17 00:00:00 2001
> From: Jan Kandziora <jjj@gmx.de>
> Date: Sat, 8 Jul 2017 21:14:27 +0200
> Subject: [PATCH 1/2] wire: export w1_touch_bit
>
> ---
> drivers/w1/w1.h | 1 +
> drivers/w1/w1_io.c | 3 ++-
> 2 files changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h
> index 758a7a6..e7af855 100644
> --- a/drivers/w1/w1.h
> +++ b/drivers/w1/w1.h
> @@ -295,6 +295,7 @@ int w1_attach_slave_device(struct w1_master *dev,
> struct w1_reg_num *rn);
> int w1_slave_detach(struct w1_slave *sl);
> u8 w1_triplet(struct w1_master *dev, int bdir);
> +u8 w1_touch_bit(struct w1_master *dev, int bit);
> void w1_write_8(struct w1_master *, u8);
> u8 w1_read_8(struct w1_master *);
> int w1_reset_bus(struct w1_master *);
> diff --git a/drivers/w1/w1_io.c b/drivers/w1/w1_io.c
> index 1134e6b..4bb77a1 100644
> --- a/drivers/w1/w1_io.c
> +++ b/drivers/w1/w1_io.c
> @@ -58,7 +58,7 @@ static u8 w1_read_bit(struct w1_master *dev);
> * @dev: the master device
> * @bit: 0 - write a 0, 1 - write a 0 read the level
> */
> -static u8 w1_touch_bit(struct w1_master *dev, int bit)
> +u8 w1_touch_bit(struct w1_master *dev, int bit)
> {
> if (dev->bus_master->touch_bit)
> return dev->bus_master->touch_bit(dev->bus_master->data, bit);
> @@ -69,6 +69,7 @@ static u8 w1_touch_bit(struct w1_master *dev, int bit)
> return 0;
> }
> }
> +EXPORT_SYMBOL_GPL(w1_touch_bit);
> /**
> * w1_write_bit() - Generates a write-0 or write-1 cycle.
> --
> 2.13.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-07-13 15:13 ` Evgeniy Polyakov
@ 2017-07-17 14:47 ` Greg Kroah-Hartman
2017-07-17 22:56 ` Jan Kandziora
0 siblings, 1 reply; 12+ messages in thread
From: Greg Kroah-Hartman @ 2017-07-17 14:47 UTC (permalink / raw)
To: Evgeniy Polyakov; +Cc: Jan Kandziora, LKML, linux-i2c@vger.kernel.org
On Thu, Jul 13, 2017 at 06:13:19PM +0300, Evgeniy Polyakov wrote:
> Hi Jan, Greg
>
> 11.07.2017, 02:00, "Jan Kandziora" <jjj@gmx.de>:
> > Changes in v4 against v3 in this subpatch:
> > - adapted to linux-4.12.0
> >
> > No changes in v3 against v2,v1 in this subpatch.
> >
> > The w1_ds28e17 driver from the next part of this patch needs to emit
> > single-bit read timeslots to the DS28E17. The w1 subsystem already
> > has this function but it is not exported outside drivers/w1/w1_io.c
> >
> > This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
> > same as the other exported symbols in drivers/w1/w1_io.c
> >
> > May be also useful later for writing drivers for other Onewire chips
> > which do single-bit communication.
> >
> > Signed-off-by: Jan Kandziora <jjj@gmx.de>
>
> Greg, please pull this patchset into the tree, I missed it last time and it stuck in the queues for a too long.
> Thank you.
>
> Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
This is in no format that I can apply, sorry.
Jan, can you resend it in a correct format?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-07-17 14:47 ` Greg Kroah-Hartman
@ 2017-07-17 22:56 ` Jan Kandziora
2017-07-18 4:59 ` Greg Kroah-Hartman
0 siblings, 1 reply; 12+ messages in thread
From: Jan Kandziora @ 2017-07-17 22:56 UTC (permalink / raw)
To: Greg Kroah-Hartman, Evgeniy Polyakov; +Cc: LKML, linux-i2c@vger.kernel.org
Am 17.07.2017 um 16:47 schrieb Greg Kroah-Hartman:
>
> This is in no format that I can apply, sorry.
>
> Jan, can you resend it in a correct format?
>
I sent part 1/2 again with the line breaks fixed (I hope.)
Part 2/2 was okay?
Kind regards
Jan
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-07-17 22:56 ` Jan Kandziora
@ 2017-07-18 4:59 ` Greg Kroah-Hartman
0 siblings, 0 replies; 12+ messages in thread
From: Greg Kroah-Hartman @ 2017-07-18 4:59 UTC (permalink / raw)
To: Jan Kandziora; +Cc: Evgeniy Polyakov, LKML, linux-i2c@vger.kernel.org
On Tue, Jul 18, 2017 at 12:56:46AM +0200, Jan Kandziora wrote:
> Am 17.07.2017 um 16:47 schrieb Greg Kroah-Hartman:
> >
> > This is in no format that I can apply, sorry.
> >
> > Jan, can you resend it in a correct format?
> >
> I sent part 1/2 again with the line breaks fixed (I hope.)
>
> Part 2/2 was okay?
I have no idea, always resend the whole series.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 1/2] wire: export w1_touch_bit
@ 2017-07-19 20:14 Jan Kandziora
2017-08-27 7:21 ` Evgeniy Polyakov
0 siblings, 1 reply; 12+ messages in thread
From: Jan Kandziora @ 2017-07-19 20:14 UTC (permalink / raw)
To: LKML; +Cc: Evgeniy Polyakov, Linux-I2C
The w1_ds28e17 driver from the next part of this patch needs to emit
single-bit read timeslots to the DS28E17. The w1 subsystem already
has this function but it is not exported outside drivers/w1/w1_io.c
This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
same as the other exported symbols in drivers/w1/w1_io.c
May be also useful later for writing drivers for other Onewire chips
which do single-bit communication.
Signed-off-by: Jan Kandziora <jjj@gmx.de>
---
Changes in v4 against v3 in this subpatch:
- adapted to linux-4.12.0
No changes in v3 against v2,v1 in this subpatch.
drivers/w1/w1.h | 1 +
drivers/w1/w1_io.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h
index 758a7a6..e7af855 100644
--- a/drivers/w1/w1.h
+++ b/drivers/w1/w1.h
@@ -295,6 +295,7 @@ int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn);
int w1_slave_detach(struct w1_slave *sl);
u8 w1_triplet(struct w1_master *dev, int bdir);
+u8 w1_touch_bit(struct w1_master *dev, int bit);
void w1_write_8(struct w1_master *, u8);
u8 w1_read_8(struct w1_master *);
int w1_reset_bus(struct w1_master *);
diff --git a/drivers/w1/w1_io.c b/drivers/w1/w1_io.c
index 1134e6b..4bb77a1 100644
--- a/drivers/w1/w1_io.c
+++ b/drivers/w1/w1_io.c
@@ -58,7 +58,7 @@ static u8 w1_read_bit(struct w1_master *dev);
* @dev: the master device
* @bit: 0 - write a 0, 1 - write a 0 read the level
*/
-static u8 w1_touch_bit(struct w1_master *dev, int bit)
+u8 w1_touch_bit(struct w1_master *dev, int bit)
{
if (dev->bus_master->touch_bit)
return dev->bus_master->touch_bit(dev->bus_master->data, bit);
@@ -69,6 +69,7 @@ static u8 w1_touch_bit(struct w1_master *dev, int bit)
return 0;
}
}
+EXPORT_SYMBOL_GPL(w1_touch_bit);
/**
* w1_write_bit() - Generates a write-0 or write-1 cycle.
--
2.13.2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-07-19 20:14 Jan Kandziora
@ 2017-08-27 7:21 ` Evgeniy Polyakov
0 siblings, 0 replies; 12+ messages in thread
From: Evgeniy Polyakov @ 2017-08-27 7:21 UTC (permalink / raw)
To: Jan Kandziora, LKML; +Cc: Linux-I2C
Hi
19.07.2017, 23:14, "Jan Kandziora" <jjj@gmx.de>:
> The w1_ds28e17 driver from the next part of this patch needs to emit
> single-bit read timeslots to the DS28E17. The w1 subsystem already
> has this function but it is not exported outside drivers/w1/w1_io.c
>
> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
> same as the other exported symbols in drivers/w1/w1_io.c
>
> May be also useful later for writing drivers for other Onewire chips
> which do single-bit communication.
>
> Signed-off-by: Jan Kandziora <jjj@gmx.de>
> ---
> Changes in v4 against v3 in this subpatch:
> - adapted to linux-4.12.0
Greg, please pull this patch series into the tree, it has been adopted to the latest vanilla tree to date.
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v4 1/2] wire: export w1_touch_bit
@ 2017-09-18 13:03 Jan Kandziora
2017-09-18 14:19 ` GregKH
0 siblings, 1 reply; 12+ messages in thread
From: Jan Kandziora @ 2017-09-18 13:03 UTC (permalink / raw)
To: GregKH, LKML; +Cc: Evgeniy Polyakov, Linux-I2C
The w1_ds28e17 driver from the next part of this patch needs to emit
single-bit read timeslots to the DS28E17. The w1 subsystem already
has this function but it is not exported outside drivers/w1/w1_io.c
This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
same as the other exported symbols in drivers/w1/w1_io.c
May be also useful later for writing drivers for other Onewire chips
which do single-bit communication.
Signed-off-by: Jan Kandziora <jjj@gmx.de>
---
Changes in v4 against v3 in this subpatch:
- adapted to linux-4.12.0
No changes in v3 against v2,v1 in this subpatch.
drivers/w1/w1.h | 1 +
drivers/w1/w1_io.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h
index 758a7a6..e7af855 100644
--- a/drivers/w1/w1.h
+++ b/drivers/w1/w1.h
@@ -295,6 +295,7 @@ int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn);
int w1_slave_detach(struct w1_slave *sl);
u8 w1_triplet(struct w1_master *dev, int bdir);
+u8 w1_touch_bit(struct w1_master *dev, int bit);
void w1_write_8(struct w1_master *, u8);
u8 w1_read_8(struct w1_master *);
int w1_reset_bus(struct w1_master *);
diff --git a/drivers/w1/w1_io.c b/drivers/w1/w1_io.c
index 1134e6b..4bb77a1 100644
--- a/drivers/w1/w1_io.c
+++ b/drivers/w1/w1_io.c
@@ -58,7 +58,7 @@ static u8 w1_read_bit(struct w1_master *dev);
* @dev: the master device
* @bit: 0 - write a 0, 1 - write a 0 read the level
*/
-static u8 w1_touch_bit(struct w1_master *dev, int bit)
+u8 w1_touch_bit(struct w1_master *dev, int bit)
{
if (dev->bus_master->touch_bit)
return dev->bus_master->touch_bit(dev->bus_master->data, bit);
@@ -69,6 +69,7 @@ static u8 w1_touch_bit(struct w1_master *dev, int bit)
return 0;
}
}
+EXPORT_SYMBOL_GPL(w1_touch_bit);
/**
* w1_write_bit() - Generates a write-0 or write-1 cycle.
--
2.13.3
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-09-18 13:03 Jan Kandziora
@ 2017-09-18 14:19 ` GregKH
2017-09-18 19:34 ` Jan Kandziora
2017-09-20 21:54 ` Jan Kandziora
0 siblings, 2 replies; 12+ messages in thread
From: GregKH @ 2017-09-18 14:19 UTC (permalink / raw)
To: Jan Kandziora; +Cc: LKML, Evgeniy Polyakov, Linux-I2C
On Mon, Sep 18, 2017 at 03:03:45PM +0200, Jan Kandziora wrote:
> The w1_ds28e17 driver from the next part of this patch needs to emit
> single-bit read timeslots to the DS28E17. The w1 subsystem already
> has this function but it is not exported outside drivers/w1/w1_io.c
>
> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
> same as the other exported symbols in drivers/w1/w1_io.c
>
> May be also useful later for writing drivers for other Onewire chips
> which do single-bit communication.
>
> Signed-off-by: Jan Kandziora <jjj@gmx.de>
> Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
> ---
> Changes in v4 against v3 in this subpatch:
> - adapted to linux-4.12.0
>
> No changes in v3 against v2,v1 in this subpatch.
You should change it as it does not apply to 4.14-rc1 :(
Please rebase your patches and resend them, with Evgeniy's acks added to
them.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-09-18 14:19 ` GregKH
@ 2017-09-18 19:34 ` Jan Kandziora
2017-09-18 19:37 ` GregKH
2017-09-20 21:54 ` Jan Kandziora
1 sibling, 1 reply; 12+ messages in thread
From: Jan Kandziora @ 2017-09-18 19:34 UTC (permalink / raw)
To: GregKH; +Cc: LKML, Evgeniy Polyakov, Linux-I2C
Am 18.09.2017 um 16:19 schrieb GregKH:
> On Mon, Sep 18, 2017 at 03:03:45PM +0200, Jan Kandziora wrote:
>> The w1_ds28e17 driver from the next part of this patch needs to emit
>> single-bit read timeslots to the DS28E17. The w1 subsystem already
>> has this function but it is not exported outside drivers/w1/w1_io.c
>>
>> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
>> same as the other exported symbols in drivers/w1/w1_io.c
>>
>> May be also useful later for writing drivers for other Onewire chips
>> which do single-bit communication.
>>
>> Signed-off-by: Jan Kandziora <jjj@gmx.de>
>> Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
>> ---
>> Changes in v4 against v3 in this subpatch:
>> - adapted to linux-4.12.0
>>
>> No changes in v3 against v2,v1 in this subpatch.
>
> You should change it as it does not apply to 4.14-rc1 :(
>
Okay, I will review them again.
> Please rebase your patches and resend them, with Evgeniy's acks added to
> them.
>
Now you caught me. I don't know how to do that. What's required? The
Acked-by: line? Am I allowed to simply add these lines to my patches or
is there a procedure to follow?
Kind regards
Jan
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-09-18 19:34 ` Jan Kandziora
@ 2017-09-18 19:37 ` GregKH
0 siblings, 0 replies; 12+ messages in thread
From: GregKH @ 2017-09-18 19:37 UTC (permalink / raw)
To: Jan Kandziora; +Cc: LKML, Evgeniy Polyakov, Linux-I2C
On Mon, Sep 18, 2017 at 09:34:27PM +0200, Jan Kandziora wrote:
> Am 18.09.2017 um 16:19 schrieb GregKH:
> > On Mon, Sep 18, 2017 at 03:03:45PM +0200, Jan Kandziora wrote:
> >> The w1_ds28e17 driver from the next part of this patch needs to emit
> >> single-bit read timeslots to the DS28E17. The w1 subsystem already
> >> has this function but it is not exported outside drivers/w1/w1_io.c
> >>
> >> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
> >> same as the other exported symbols in drivers/w1/w1_io.c
> >>
> >> May be also useful later for writing drivers for other Onewire chips
> >> which do single-bit communication.
> >>
> >> Signed-off-by: Jan Kandziora <jjj@gmx.de>
> >> Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
> >> ---
> >> Changes in v4 against v3 in this subpatch:
> >> - adapted to linux-4.12.0
> >>
> >> No changes in v3 against v2,v1 in this subpatch.
> >
> > You should change it as it does not apply to 4.14-rc1 :(
> >
> Okay, I will review them again.
>
>
> > Please rebase your patches and resend them, with Evgeniy's acks added to
> > them.
> >
> Now you caught me. I don't know how to do that. What's required? The
> Acked-by: line? Am I allowed to simply add these lines to my patches or
> is there a procedure to follow?
Just add the acked-by line, like I did above, and all should be fine.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v4 1/2] wire: export w1_touch_bit
2017-09-18 14:19 ` GregKH
2017-09-18 19:34 ` Jan Kandziora
@ 2017-09-20 21:54 ` Jan Kandziora
1 sibling, 0 replies; 12+ messages in thread
From: Jan Kandziora @ 2017-09-20 21:54 UTC (permalink / raw)
To: GregKH; +Cc: LKML, Evgeniy Polyakov, Linux-I2C
Am 18.09.2017 um 16:19 schrieb GregKH:
> On Mon, Sep 18, 2017 at 03:03:45PM +0200, Jan Kandziora wrote:
>> The w1_ds28e17 driver from the next part of this patch needs to emit
>> single-bit read timeslots to the DS28E17. The w1 subsystem already
>> has this function but it is not exported outside drivers/w1/w1_io.c
>>
>> This subpatch exports the w1_touch_bit symbol with EXPORT_SYMBOL_GPL,
>> same as the other exported symbols in drivers/w1/w1_io.c
>>
>> May be also useful later for writing drivers for other Onewire chips
>> which do single-bit communication.
>>
>> Signed-off-by: Jan Kandziora <jjj@gmx.de>
>> Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
>> ---
>> Changes in v4 against v3 in this subpatch:
>> - adapted to linux-4.12.0
>>
>> No changes in v3 against v2,v1 in this subpatch.
>
> You should change it as it does not apply to 4.14-rc1 :(
>
I revised it and just sent it to you and now I hope for the best.
Kind regards
Jan
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2017-09-20 21:54 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-10 22:59 [PATCH v4 1/2] wire: export w1_touch_bit Jan Kandziora
2017-07-13 15:13 ` Evgeniy Polyakov
2017-07-17 14:47 ` Greg Kroah-Hartman
2017-07-17 22:56 ` Jan Kandziora
2017-07-18 4:59 ` Greg Kroah-Hartman
-- strict thread matches above, loose matches on Subject: below --
2017-07-19 20:14 Jan Kandziora
2017-08-27 7:21 ` Evgeniy Polyakov
2017-09-18 13:03 Jan Kandziora
2017-09-18 14:19 ` GregKH
2017-09-18 19:34 ` Jan Kandziora
2017-09-18 19:37 ` GregKH
2017-09-20 21:54 ` Jan Kandziora
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).