* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
@ 2013-06-07 11:55 Inderpal Singh
2013-06-12 19:38 ` Jagan Teki
0 siblings, 1 reply; 6+ messages in thread
From: Inderpal Singh @ 2013-06-07 11:55 UTC (permalink / raw)
To: u-boot
They have been defined once already. Hence remove the redundant definitions.
Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
---
v1 was posted as the first patch of [1]
Changes in v2:
- split from the patchset at [1]
- removed redundant configs for PMIC
- rebased to latest u-boot-samsung master branch
[1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101
include/configs/exynos5250-dt.h | 26 --------------------------
1 file changed, 26 deletions(-)
diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h
index 62b83d4..03b07b2 100644
--- a/include/configs/exynos5250-dt.h
+++ b/include/configs/exynos5250-dt.h
@@ -246,11 +246,6 @@
#define CONFIG_SYS_I2C_SLAVE 0x0
#define CONFIG_I2C_EDID
-/* PMIC */
-#define CONFIG_PMIC
-#define CONFIG_PMIC_I2C
-#define CONFIG_PMIC_MAX77686
-
/* SPI */
#define CONFIG_ENV_IS_IN_SPI_FLASH
#define CONFIG_SPI_FLASH
@@ -278,27 +273,6 @@
#define CONFIG_POWER_I2C
#define CONFIG_POWER_MAX77686
-/* SPI */
-#define CONFIG_ENV_IS_IN_SPI_FLASH
-#define CONFIG_SPI_FLASH
-
-#ifdef CONFIG_SPI_FLASH
-#define CONFIG_EXYNOS_SPI
-#define CONFIG_CMD_SF
-#define CONFIG_CMD_SPI
-#define CONFIG_SPI_FLASH_WINBOND
-#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
-#define CONFIG_SF_DEFAULT_SPEED 50000000
-#define EXYNOS5_SPI_NUM_CONTROLLERS 5
-#endif
-
-#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
-#define CONFIG_ENV_SPI_MODE SPI_MODE_0
-#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
-#define CONFIG_ENV_SPI_BUS 1
-#define CONFIG_ENV_SPI_MAX_HZ 50000000
-#endif
-
/* Ethernet Controllor Driver */
#ifdef CONFIG_CMD_NET
#define CONFIG_SMC911X
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
2013-06-07 11:55 [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs Inderpal Singh
@ 2013-06-12 19:38 ` Jagan Teki
2013-06-20 8:10 ` Inderpal Singh
0 siblings, 1 reply; 6+ messages in thread
From: Jagan Teki @ 2013-06-12 19:38 UTC (permalink / raw)
To: u-boot
Hi,
Can you separate the PMIC and SPI changes into two different patches.
Also may i know why you remove the SPI from configs, does it defined
some where or you don't want SPI at all.?
--
Thanks,
Jagan.
On 07-06-2013 17:25, Inderpal Singh wrote:
> They have been defined once already. Hence remove the redundant definitions.
>
> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
> ---
> v1 was posted as the first patch of [1]
>
> Changes in v2:
> - split from the patchset at [1]
> - removed redundant configs for PMIC
> - rebased to latest u-boot-samsung master branch
>
> [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101
>
> include/configs/exynos5250-dt.h | 26 --------------------------
> 1 file changed, 26 deletions(-)
>
> diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h
> index 62b83d4..03b07b2 100644
> --- a/include/configs/exynos5250-dt.h
> +++ b/include/configs/exynos5250-dt.h
> @@ -246,11 +246,6 @@
> #define CONFIG_SYS_I2C_SLAVE 0x0
> #define CONFIG_I2C_EDID
>
> -/* PMIC */
> -#define CONFIG_PMIC
> -#define CONFIG_PMIC_I2C
> -#define CONFIG_PMIC_MAX77686
> -
> /* SPI */
> #define CONFIG_ENV_IS_IN_SPI_FLASH
> #define CONFIG_SPI_FLASH
> @@ -278,27 +273,6 @@
> #define CONFIG_POWER_I2C
> #define CONFIG_POWER_MAX77686
>
> -/* SPI */
> -#define CONFIG_ENV_IS_IN_SPI_FLASH
> -#define CONFIG_SPI_FLASH
> -
> -#ifdef CONFIG_SPI_FLASH
> -#define CONFIG_EXYNOS_SPI
> -#define CONFIG_CMD_SF
> -#define CONFIG_CMD_SPI
> -#define CONFIG_SPI_FLASH_WINBOND
> -#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
> -#define CONFIG_SF_DEFAULT_SPEED 50000000
> -#define EXYNOS5_SPI_NUM_CONTROLLERS 5
> -#endif
> -
> -#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
> -#define CONFIG_ENV_SPI_MODE SPI_MODE_0
> -#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
> -#define CONFIG_ENV_SPI_BUS 1
> -#define CONFIG_ENV_SPI_MAX_HZ 50000000
> -#endif
> -
> /* Ethernet Controllor Driver */
> #ifdef CONFIG_CMD_NET
> #define CONFIG_SMC911X
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
2013-06-12 19:38 ` Jagan Teki
@ 2013-06-20 8:10 ` Inderpal Singh
2013-08-08 13:45 ` Jagan Teki
0 siblings, 1 reply; 6+ messages in thread
From: Inderpal Singh @ 2013-06-20 8:10 UTC (permalink / raw)
To: u-boot
Hi Jagan,
On 13 June 2013 01:08, Jagan Teki <jagannadh.teki@gmail.com> wrote:
> Hi,
>
> Can you separate the PMIC and SPI changes into two different patches.
>
>
Since its a minor clean up patch. I feel there is no need to split it into
two.
> Also may i know why you remove the SPI from configs, does it defined some
> where or you don't want SPI at all.?
>
>
As I mentioned in the commit message , these configs are redundant. They
have already been defined in the same file.
Thanks,
Inder
> --
> Thanks,
> Jagan.
>
>
> On 07-06-2013 17:25, Inderpal Singh wrote:
>
>> They have been defined once already. Hence remove the redundant
>> definitions.
>>
>> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
>> ---
>> v1 was posted as the first patch of [1]
>>
>> Changes in v2:
>> - split from the patchset at [1]
>> - removed redundant configs for PMIC
>> - rebased to latest u-boot-samsung master branch
>>
>> [1] http://comments.gmane.org/**gmane.comp.boot-loaders.u-**boot/157101<http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101>
>>
>> include/configs/exynos5250-dt.**h | 26 --------------------------
>> 1 file changed, 26 deletions(-)
>>
>> diff --git a/include/configs/exynos5250-**dt.h
>> b/include/configs/exynos5250-**dt.h
>> index 62b83d4..03b07b2 100644
>> --- a/include/configs/exynos5250-**dt.h
>> +++ b/include/configs/exynos5250-**dt.h
>> @@ -246,11 +246,6 @@
>> #define CONFIG_SYS_I2C_SLAVE 0x0
>> #define CONFIG_I2C_EDID
>>
>> -/* PMIC */
>> -#define CONFIG_PMIC
>> -#define CONFIG_PMIC_I2C
>> -#define CONFIG_PMIC_MAX77686
>> -
>> /* SPI */
>> #define CONFIG_ENV_IS_IN_SPI_FLASH
>> #define CONFIG_SPI_FLASH
>> @@ -278,27 +273,6 @@
>> #define CONFIG_POWER_I2C
>> #define CONFIG_POWER_MAX77686
>>
>> -/* SPI */
>> -#define CONFIG_ENV_IS_IN_SPI_FLASH
>> -#define CONFIG_SPI_FLASH
>> -
>> -#ifdef CONFIG_SPI_FLASH
>> -#define CONFIG_EXYNOS_SPI
>> -#define CONFIG_CMD_SF
>> -#define CONFIG_CMD_SPI
>> -#define CONFIG_SPI_FLASH_WINBOND
>> -#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
>> -#define CONFIG_SF_DEFAULT_SPEED 50000000
>> -#define EXYNOS5_SPI_NUM_CONTROLLERS 5
>> -#endif
>> -
>> -#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
>> -#define CONFIG_ENV_SPI_MODE SPI_MODE_0
>> -#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
>> -#define CONFIG_ENV_SPI_BUS 1
>> -#define CONFIG_ENV_SPI_MAX_HZ 50000000
>> -#endif
>> -
>> /* Ethernet Controllor Driver */
>> #ifdef CONFIG_CMD_NET
>> #define CONFIG_SMC911X
>>
>>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
2013-06-20 8:10 ` Inderpal Singh
@ 2013-08-08 13:45 ` Jagan Teki
2013-12-20 19:00 ` Jagan Teki
0 siblings, 1 reply; 6+ messages in thread
From: Jagan Teki @ 2013-08-08 13:45 UTC (permalink / raw)
To: u-boot
Hi,
On Thu, Jun 20, 2013 at 1:40 PM, Inderpal Singh
<inderpal.singh@linaro.org> wrote:
> Hi Jagan,
>
>
>
> On 13 June 2013 01:08, Jagan Teki <jagannadh.teki@gmail.com> wrote:
>>
>> Hi,
>>
>> Can you separate the PMIC and SPI changes into two different patches.
>>
>
> Since its a minor clean up patch. I feel there is no need to split it into
> two.
>
>>
>> Also may i know why you remove the SPI from configs, does it defined some
>> where or you don't want SPI at all.?
>>
>
> As I mentioned in the commit message , these configs are redundant. They
> have already been defined in the same file.
>
> Thanks,
> Inder
>
>>
>> --
>> Thanks,
>> Jagan.
>>
>>
>> On 07-06-2013 17:25, Inderpal Singh wrote:
>>>
>>> They have been defined once already. Hence remove the redundant
>>> definitions.
>>>
>>> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
>>> ---
>>> v1 was posted as the first patch of [1]
>>>
>>> Changes in v2:
>>> - split from the patchset at [1]
>>> - removed redundant configs for PMIC
>>> - rebased to latest u-boot-samsung master branch
>>>
>>> [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101
>>>
>>> include/configs/exynos5250-dt.h | 26 --------------------------
>>> 1 file changed, 26 deletions(-)
>>>
>>> diff --git a/include/configs/exynos5250-dt.h
>>> b/include/configs/exynos5250-dt.h
>>> index 62b83d4..03b07b2 100644
>>> --- a/include/configs/exynos5250-dt.h
>>> +++ b/include/configs/exynos5250-dt.h
>>> @@ -246,11 +246,6 @@
>>> #define CONFIG_SYS_I2C_SLAVE 0x0
>>> #define CONFIG_I2C_EDID
>>>
>>> -/* PMIC */
>>> -#define CONFIG_PMIC
>>> -#define CONFIG_PMIC_I2C
>>> -#define CONFIG_PMIC_MAX77686
>>> -
>>> /* SPI */
>>> #define CONFIG_ENV_IS_IN_SPI_FLASH
>>> #define CONFIG_SPI_FLASH
>>> @@ -278,27 +273,6 @@
>>> #define CONFIG_POWER_I2C
>>> #define CONFIG_POWER_MAX77686
>>>
>>> -/* SPI */
>>> -#define CONFIG_ENV_IS_IN_SPI_FLASH
>>> -#define CONFIG_SPI_FLASH
>>> -
>>> -#ifdef CONFIG_SPI_FLASH
>>> -#define CONFIG_EXYNOS_SPI
>>> -#define CONFIG_CMD_SF
>>> -#define CONFIG_CMD_SPI
>>> -#define CONFIG_SPI_FLASH_WINBOND
>>> -#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
>>> -#define CONFIG_SF_DEFAULT_SPEED 50000000
>>> -#define EXYNOS5_SPI_NUM_CONTROLLERS 5
>>> -#endif
>>> -
>>> -#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
>>> -#define CONFIG_ENV_SPI_MODE SPI_MODE_0
>>> -#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
>>> -#define CONFIG_ENV_SPI_BUS 1
>>> -#define CONFIG_ENV_SPI_MAX_HZ 50000000
>>> -#endif
>>> -
>>> /* Ethernet Controllor Driver */
>>> #ifdef CONFIG_CMD_NET
>>> #define CONFIG_SMC911X
>>>
>>
>
Planning to apply this.
Please comment Inder.
--
Thanks,
Jagan.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
2013-08-08 13:45 ` Jagan Teki
@ 2013-12-20 19:00 ` Jagan Teki
2014-01-07 2:13 ` Minkyu Kang
0 siblings, 1 reply; 6+ messages in thread
From: Jagan Teki @ 2013-12-20 19:00 UTC (permalink / raw)
To: u-boot
Hi Inderpal Singh,
On Thu, Aug 8, 2013 at 7:15 PM, Jagan Teki <jagannadh.teki@gmail.com> wrote:
> Hi,
>
> On Thu, Jun 20, 2013 at 1:40 PM, Inderpal Singh
> <inderpal.singh@linaro.org> wrote:
>> Hi Jagan,
>>
>>
>>
>> On 13 June 2013 01:08, Jagan Teki <jagannadh.teki@gmail.com> wrote:
>>>
>>> Hi,
>>>
>>> Can you separate the PMIC and SPI changes into two different patches.
>>>
>>
>> Since its a minor clean up patch. I feel there is no need to split it into
>> two.
>>
>>>
>>> Also may i know why you remove the SPI from configs, does it defined some
>>> where or you don't want SPI at all.?
>>>
>>
>> As I mentioned in the commit message , these configs are redundant. They
>> have already been defined in the same file.
>>
>> Thanks,
>> Inder
>>
>>>
>>> --
>>> Thanks,
>>> Jagan.
>>>
>>>
>>> On 07-06-2013 17:25, Inderpal Singh wrote:
>>>>
>>>> They have been defined once already. Hence remove the redundant
>>>> definitions.
>>>>
>>>> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
>>>> ---
>>>> v1 was posted as the first patch of [1]
>>>>
>>>> Changes in v2:
>>>> - split from the patchset at [1]
>>>> - removed redundant configs for PMIC
>>>> - rebased to latest u-boot-samsung master branch
>>>>
>>>> [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101
>>>>
>>>> include/configs/exynos5250-dt.h | 26 --------------------------
>>>> 1 file changed, 26 deletions(-)
>>>>
>>>> diff --git a/include/configs/exynos5250-dt.h
>>>> b/include/configs/exynos5250-dt.h
>>>> index 62b83d4..03b07b2 100644
>>>> --- a/include/configs/exynos5250-dt.h
>>>> +++ b/include/configs/exynos5250-dt.h
>>>> @@ -246,11 +246,6 @@
>>>> #define CONFIG_SYS_I2C_SLAVE 0x0
>>>> #define CONFIG_I2C_EDID
>>>>
>>>> -/* PMIC */
>>>> -#define CONFIG_PMIC
>>>> -#define CONFIG_PMIC_I2C
>>>> -#define CONFIG_PMIC_MAX77686
>>>> -
>>>> /* SPI */
>>>> #define CONFIG_ENV_IS_IN_SPI_FLASH
>>>> #define CONFIG_SPI_FLASH
>>>> @@ -278,27 +273,6 @@
>>>> #define CONFIG_POWER_I2C
>>>> #define CONFIG_POWER_MAX77686
>>>>
>>>> -/* SPI */
>>>> -#define CONFIG_ENV_IS_IN_SPI_FLASH
>>>> -#define CONFIG_SPI_FLASH
>>>> -
>>>> -#ifdef CONFIG_SPI_FLASH
>>>> -#define CONFIG_EXYNOS_SPI
>>>> -#define CONFIG_CMD_SF
>>>> -#define CONFIG_CMD_SPI
>>>> -#define CONFIG_SPI_FLASH_WINBOND
>>>> -#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
>>>> -#define CONFIG_SF_DEFAULT_SPEED 50000000
>>>> -#define EXYNOS5_SPI_NUM_CONTROLLERS 5
>>>> -#endif
>>>> -
>>>> -#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
>>>> -#define CONFIG_ENV_SPI_MODE SPI_MODE_0
>>>> -#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
>>>> -#define CONFIG_ENV_SPI_BUS 1
>>>> -#define CONFIG_ENV_SPI_MAX_HZ 50000000
>>>> -#endif
>>>> -
>>>> /* Ethernet Controllor Driver */
>>>> #ifdef CONFIG_CMD_NET
>>>> #define CONFIG_SMC911X
>>>>
>>>
>>
>
> Planning to apply this.
> Please comment Inder.
Any inputs on this patch - was not directly apply on master.
Let me know this changes are still require - if yes, please sent the
relevant patch again,
--
Thanks,
Jagan.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs
2013-12-20 19:00 ` Jagan Teki
@ 2014-01-07 2:13 ` Minkyu Kang
0 siblings, 0 replies; 6+ messages in thread
From: Minkyu Kang @ 2014-01-07 2:13 UTC (permalink / raw)
To: u-boot
Dear Jagan Teki,
On 21/12/13 04:00, Jagan Teki wrote:
> Hi Inderpal Singh,
>
> On Thu, Aug 8, 2013 at 7:15 PM, Jagan Teki <jagannadh.teki@gmail.com> wrote:
>> Hi,
>>
>> On Thu, Jun 20, 2013 at 1:40 PM, Inderpal Singh
>> <inderpal.singh@linaro.org> wrote:
>>> Hi Jagan,
>>>
>>>
>>>
>>> On 13 June 2013 01:08, Jagan Teki <jagannadh.teki@gmail.com> wrote:
>>>>
>>>> Hi,
>>>>
>>>> Can you separate the PMIC and SPI changes into two different patches.
>>>>
>>>
>>> Since its a minor clean up patch. I feel there is no need to split it into
>>> two.
>>>
>>>>
>>>> Also may i know why you remove the SPI from configs, does it defined some
>>>> where or you don't want SPI at all.?
>>>>
>>>
>>> As I mentioned in the commit message , these configs are redundant. They
>>> have already been defined in the same file.
>>>
>>> Thanks,
>>> Inder
>>>
>>>>
>>>> --
>>>> Thanks,
>>>> Jagan.
>>>>
>>>>
>>>> On 07-06-2013 17:25, Inderpal Singh wrote:
>>>>>
>>>>> They have been defined once already. Hence remove the redundant
>>>>> definitions.
>>>>>
>>>>> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
>>>>> ---
>>>>> v1 was posted as the first patch of [1]
>>>>>
>>>>> Changes in v2:
>>>>> - split from the patchset at [1]
>>>>> - removed redundant configs for PMIC
>>>>> - rebased to latest u-boot-samsung master branch
>>>>>
>>>>> [1] http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/157101
>>>>>
>>>>> include/configs/exynos5250-dt.h | 26 --------------------------
>>>>> 1 file changed, 26 deletions(-)
>>>>>
>>>>> diff --git a/include/configs/exynos5250-dt.h
>>>>> b/include/configs/exynos5250-dt.h
>>>>> index 62b83d4..03b07b2 100644
>>>>> --- a/include/configs/exynos5250-dt.h
>>>>> +++ b/include/configs/exynos5250-dt.h
>>>>> @@ -246,11 +246,6 @@
>>>>> #define CONFIG_SYS_I2C_SLAVE 0x0
>>>>> #define CONFIG_I2C_EDID
>>>>>
>>>>> -/* PMIC */
>>>>> -#define CONFIG_PMIC
>>>>> -#define CONFIG_PMIC_I2C
>>>>> -#define CONFIG_PMIC_MAX77686
>>>>> -
>>>>> /* SPI */
>>>>> #define CONFIG_ENV_IS_IN_SPI_FLASH
>>>>> #define CONFIG_SPI_FLASH
>>>>> @@ -278,27 +273,6 @@
>>>>> #define CONFIG_POWER_I2C
>>>>> #define CONFIG_POWER_MAX77686
>>>>>
>>>>> -/* SPI */
>>>>> -#define CONFIG_ENV_IS_IN_SPI_FLASH
>>>>> -#define CONFIG_SPI_FLASH
>>>>> -
>>>>> -#ifdef CONFIG_SPI_FLASH
>>>>> -#define CONFIG_EXYNOS_SPI
>>>>> -#define CONFIG_CMD_SF
>>>>> -#define CONFIG_CMD_SPI
>>>>> -#define CONFIG_SPI_FLASH_WINBOND
>>>>> -#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
>>>>> -#define CONFIG_SF_DEFAULT_SPEED 50000000
>>>>> -#define EXYNOS5_SPI_NUM_CONTROLLERS 5
>>>>> -#endif
>>>>> -
>>>>> -#ifdef CONFIG_ENV_IS_IN_SPI_FLASH
>>>>> -#define CONFIG_ENV_SPI_MODE SPI_MODE_0
>>>>> -#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
>>>>> -#define CONFIG_ENV_SPI_BUS 1
>>>>> -#define CONFIG_ENV_SPI_MAX_HZ 50000000
>>>>> -#endif
>>>>> -
>>>>> /* Ethernet Controllor Driver */
>>>>> #ifdef CONFIG_CMD_NET
>>>>> #define CONFIG_SMC911X
>>>>>
>>>>
>>>
>>
>> Planning to apply this.
>> Please comment Inder.
>
> Any inputs on this patch - was not directly apply on master.
> Let me know this changes are still require - if yes, please sent the
> relevant patch again,
>
In samsung tree, this patch does not need any more because another patch was fixed this issue.
Please ignore this patch.
Thanks,
Minkyu Kang.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-01-07 2:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-07 11:55 [U-Boot] [PATCH v2] exynos5250: remove redundant SPI and PMIC related configs Inderpal Singh
2013-06-12 19:38 ` Jagan Teki
2013-06-20 8:10 ` Inderpal Singh
2013-08-08 13:45 ` Jagan Teki
2013-12-20 19:00 ` Jagan Teki
2014-01-07 2:13 ` Minkyu Kang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox