linux-samsung-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spi: s3c64xx: add no_cs description
       [not found] <CGME20230306015413epcas2p371356e4008af6978cdadb5b859d8be2a@epcas2p3.samsung.com>
@ 2023-03-06  1:42 ` Jaewon Kim
  2023-03-06  6:26   ` Krzysztof Kozlowski
                     ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Jaewon Kim @ 2023-03-06  1:42 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andi Shyti, Alim Akhtar
  Cc: linux-spi, linux-samsung-soc, linux-arm-kernel, linux-kernel, Jaewon Kim

This patch adds missing variable no_cs descriptions.

Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>
---
 include/linux/platform_data/spi-s3c64xx.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/platform_data/spi-s3c64xx.h b/include/linux/platform_data/spi-s3c64xx.h
index 5df1ace6d2c9..3101152ce449 100644
--- a/include/linux/platform_data/spi-s3c64xx.h
+++ b/include/linux/platform_data/spi-s3c64xx.h
@@ -29,6 +29,7 @@ struct s3c64xx_spi_csinfo {
  * struct s3c64xx_spi_info - SPI Controller defining structure
  * @src_clk_nr: Clock source index for the CLK_CFG[SPI_CLKSEL] field.
  * @num_cs: Number of CS this controller emulates.
+ * @no_cs: Used when CS line is not connected.
  * @cfg_gpio: Configure pins for this SPI controller.
  */
 struct s3c64xx_spi_info {
-- 
2.17.1


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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-06  1:42 ` [PATCH] spi: s3c64xx: add no_cs description Jaewon Kim
@ 2023-03-06  6:26   ` Krzysztof Kozlowski
  2023-03-06  9:06   ` Andi Shyti
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-06  6:26 UTC (permalink / raw)
  To: Jaewon Kim, Andi Shyti, Alim Akhtar
  Cc: linux-spi, linux-samsung-soc, linux-arm-kernel, linux-kernel

On 06/03/2023 02:42, Jaewon Kim wrote:
> This patch adds missing variable no_cs descriptions.
> 
> Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-06  1:42 ` [PATCH] spi: s3c64xx: add no_cs description Jaewon Kim
  2023-03-06  6:26   ` Krzysztof Kozlowski
@ 2023-03-06  9:06   ` Andi Shyti
  2023-03-30 13:40   ` Jaewon Kim
  2023-03-30 19:59   ` Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: Andi Shyti @ 2023-03-06  9:06 UTC (permalink / raw)
  To: Jaewon Kim
  Cc: Krzysztof Kozlowski, Andi Shyti, Alim Akhtar, linux-spi,
	linux-samsung-soc, linux-arm-kernel, linux-kernel

Hi Jaewon,

On Mon, Mar 06, 2023 at 10:42:39AM +0900, Jaewon Kim wrote:
> This patch adds missing variable no_cs descriptions.
> 
> Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>

Reviewed-by: Andi Shyti <andi@etezian.org>

Thanks,
Andi

> ---
>  include/linux/platform_data/spi-s3c64xx.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/linux/platform_data/spi-s3c64xx.h b/include/linux/platform_data/spi-s3c64xx.h
> index 5df1ace6d2c9..3101152ce449 100644
> --- a/include/linux/platform_data/spi-s3c64xx.h
> +++ b/include/linux/platform_data/spi-s3c64xx.h
> @@ -29,6 +29,7 @@ struct s3c64xx_spi_csinfo {
>   * struct s3c64xx_spi_info - SPI Controller defining structure
>   * @src_clk_nr: Clock source index for the CLK_CFG[SPI_CLKSEL] field.
>   * @num_cs: Number of CS this controller emulates.
> + * @no_cs: Used when CS line is not connected.
>   * @cfg_gpio: Configure pins for this SPI controller.
>   */
>  struct s3c64xx_spi_info {
> -- 
> 2.17.1

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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-06  1:42 ` [PATCH] spi: s3c64xx: add no_cs description Jaewon Kim
  2023-03-06  6:26   ` Krzysztof Kozlowski
  2023-03-06  9:06   ` Andi Shyti
@ 2023-03-30 13:40   ` Jaewon Kim
  2023-03-30 14:46     ` Krzysztof Kozlowski
  2023-03-30 19:59   ` Mark Brown
  3 siblings, 1 reply; 7+ messages in thread
From: Jaewon Kim @ 2023-03-30 13:40 UTC (permalink / raw)
  To: Mark Brown
  Cc: linux-spi, linux-samsung-soc, Krzysztof Kozlowski,
	linux-arm-kernel, linux-kernel, Andi Shyti, Alim Akhtar

Hello Mark


Could you apply this patch?

I missed you in the mail recipient.


https://lkml.org/lkml/2023/3/6/34

https://lkml.org/lkml/2023/3/6/232


On 23. 3. 6. 10:42, Jaewon Kim wrote:
> This patch adds missing variable no_cs descriptions.
>
> Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>
> ---
>   include/linux/platform_data/spi-s3c64xx.h | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/include/linux/platform_data/spi-s3c64xx.h b/include/linux/platform_data/spi-s3c64xx.h
> index 5df1ace6d2c9..3101152ce449 100644
> --- a/include/linux/platform_data/spi-s3c64xx.h
> +++ b/include/linux/platform_data/spi-s3c64xx.h
> @@ -29,6 +29,7 @@ struct s3c64xx_spi_csinfo {
>    * struct s3c64xx_spi_info - SPI Controller defining structure
>    * @src_clk_nr: Clock source index for the CLK_CFG[SPI_CLKSEL] field.
>    * @num_cs: Number of CS this controller emulates.
> + * @no_cs: Used when CS line is not connected.
>    * @cfg_gpio: Configure pins for this SPI controller.
>    */
>   struct s3c64xx_spi_info {


Thanks


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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-30 13:40   ` Jaewon Kim
@ 2023-03-30 14:46     ` Krzysztof Kozlowski
  2023-03-31  1:07       ` Jaewon Kim
  0 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-30 14:46 UTC (permalink / raw)
  To: Jaewon Kim, Mark Brown
  Cc: linux-spi, linux-samsung-soc, linux-arm-kernel, linux-kernel,
	Andi Shyti, Alim Akhtar

On 30/03/2023 15:40, Jaewon Kim wrote:
> Hello Mark
> 
> 
> Could you apply this patch?
> 
> I missed you in the mail recipient.
> 
> 
> https://lkml.org/lkml/2023/3/6/34
> 
> https://lkml.org/lkml/2023/3/6/232

I think you should resend. This time with entire output of
scripts/get_maintainers.pl

Best regards,
Krzysztof


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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-06  1:42 ` [PATCH] spi: s3c64xx: add no_cs description Jaewon Kim
                     ` (2 preceding siblings ...)
  2023-03-30 13:40   ` Jaewon Kim
@ 2023-03-30 19:59   ` Mark Brown
  3 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2023-03-30 19:59 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andi Shyti, Alim Akhtar, Jaewon Kim
  Cc: linux-spi, linux-samsung-soc, linux-arm-kernel, linux-kernel

On Mon, 06 Mar 2023 10:42:39 +0900, Jaewon Kim wrote:
> This patch adds missing variable no_cs descriptions.
> 
> 

Applied to

   broonie/spi.git for-next

Thanks!

[1/1] spi: s3c64xx: add no_cs description
      commit: e3d53ded577328f2b26d361f2e62fc70e85ab6a3

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


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

* Re: [PATCH] spi: s3c64xx: add no_cs description
  2023-03-30 14:46     ` Krzysztof Kozlowski
@ 2023-03-31  1:07       ` Jaewon Kim
  0 siblings, 0 replies; 7+ messages in thread
From: Jaewon Kim @ 2023-03-31  1:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Mark Brown
  Cc: linux-spi, linux-samsung-soc, linux-arm-kernel, linux-kernel,
	Andi Shyti, Alim Akhtar

Hi Krzysztof


I always appreciate your kind guide.


I used 'get_maintainers.pl' but the Mark was missing.

Because the changes in this patch are only in 
"include/linux/platform_data/".

There was no touch in SPI driver. So, script did not outputting the SPI 
Maintainer.


Thanks

Jaewon Kim

On 23. 3. 30. 23:46, Krzysztof Kozlowski wrote:
> On 30/03/2023 15:40, Jaewon Kim wrote:
>> Hello Mark
>>
>>
>> Could you apply this patch?
>>
>> I missed you in the mail recipient.
>>
>>
>> https://protect2.fireeye.com/v1/url?k=62c6672d-034d7217-62c7ec62-74fe4860008a-45c729ef051007d6&q=1&e=03453742-6822-4fdc-9ee7-bdb6bdb0fe4f&u=https%3A%2F%2Flkml.org%2Flkml%2F2023%2F3%2F6%2F34
>>
>> https://protect2.fireeye.com/v1/url?k=41253bbb-20ae2e81-4124b0f4-74fe4860008a-f6ba8ee97b64390d&q=1&e=03453742-6822-4fdc-9ee7-bdb6bdb0fe4f&u=https%3A%2F%2Flkml.org%2Flkml%2F2023%2F3%2F6%2F232
> I think you should resend. This time with entire output of
> scripts/get_maintainers.pl
>
> Best regards,
> Krzysztof
>
>

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

end of thread, other threads:[~2023-03-31  1:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20230306015413epcas2p371356e4008af6978cdadb5b859d8be2a@epcas2p3.samsung.com>
2023-03-06  1:42 ` [PATCH] spi: s3c64xx: add no_cs description Jaewon Kim
2023-03-06  6:26   ` Krzysztof Kozlowski
2023-03-06  9:06   ` Andi Shyti
2023-03-30 13:40   ` Jaewon Kim
2023-03-30 14:46     ` Krzysztof Kozlowski
2023-03-31  1:07       ` Jaewon Kim
2023-03-30 19:59   ` Mark Brown

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).