From mboxrd@z Thu Jan 1 00:00:00 1970 From: broonie@kernel.org (Mark Brown) Date: Fri, 4 May 2018 08:13:05 +0900 Subject: [PATCH 1/3] spi: meson-axg: support MAX 80M clock In-Reply-To: <20180503213645.20694-2-yixun.lan@amlogic.com> References: <20180503213645.20694-1-yixun.lan@amlogic.com> <20180503213645.20694-2-yixun.lan@amlogic.com> Message-ID: <20180503231305.GC13402@sirena.org.uk> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org On Thu, May 03, 2018 at 09:36:42PM +0000, Yixun Lan wrote: > static const struct of_device_id meson_spicc_of_match[] = { > - { .compatible = "amlogic,meson-gx-spicc", }, > - { .compatible = "amlogic,meson-axg-spicc", }, > + { > + .compatible = "amlogic,meson-gx-spicc", > + .data = &meson_spicc_gx_data, > + }, > + { > + .compatible = "amlogic,meson-axg-spicc", > + .data = &meson_spicc_axg_data, > + }, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(of, meson_spicc_of_match); This is changing the DT bindings but there's no update to the DT binding documentation, please add an update there. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 488 bytes Desc: not available URL: From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Brown Subject: Re: [PATCH 1/3] spi: meson-axg: support MAX 80M clock Date: Fri, 4 May 2018 08:13:05 +0900 Message-ID: <20180503231305.GC13402@sirena.org.uk> References: <20180503213645.20694-1-yixun.lan@amlogic.com> <20180503213645.20694-2-yixun.lan@amlogic.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="iFRdW5/EC4oqxDHL" Cc: Sunny Luo , Neil Armstrong , Jerome Brunet , Kevin Hilman , Carlo Caione , linux-spi@vger.kernel.org, linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org To: Yixun Lan Return-path: Content-Disposition: inline In-Reply-To: <20180503213645.20694-2-yixun.lan@amlogic.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-spi.vger.kernel.org --iFRdW5/EC4oqxDHL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, May 03, 2018 at 09:36:42PM +0000, Yixun Lan wrote: > static const struct of_device_id meson_spicc_of_match[] = { > - { .compatible = "amlogic,meson-gx-spicc", }, > - { .compatible = "amlogic,meson-axg-spicc", }, > + { > + .compatible = "amlogic,meson-gx-spicc", > + .data = &meson_spicc_gx_data, > + }, > + { > + .compatible = "amlogic,meson-axg-spicc", > + .data = &meson_spicc_axg_data, > + }, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(of, meson_spicc_of_match); This is changing the DT bindings but there's no update to the DT binding documentation, please add an update there. --iFRdW5/EC4oqxDHL Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAABCgAdFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAlrrl4AACgkQJNaLcl1U h9AKnwf+LmyWjH1qLkM99n8Lnim407HcgCEcI50yVPIY0OymY40AQX8+3KQjyF+4 r3s70Vk5GT3djRgwYciWxX3jq/GeCcjgKa4VZyy+Ia3CGb1yYXJoc/u0OsCUSD3q kEA9OulskLY7zoW+H13XLq0IpojUPnkVOb23/si9lUpOgGGk9d3srlAbS712EY98 2wetI/a0AMQDAuMpP3KwawAtcKP5CKWpqcpDgWdrZqznQWGgh9DGnS1V6t4YxHYZ 8KBA9AIaW80mRieqvMEj5fUVsO/bGCskNFq9edF0pDUI0T89FR/Qd4e6eMMiOTFp onn5vzNs+dP+MP2iZyTQ8do6umnn6g== =2yYe -----END PGP SIGNATURE----- --iFRdW5/EC4oqxDHL-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: broonie@kernel.org (Mark Brown) Date: Fri, 4 May 2018 08:13:05 +0900 Subject: [PATCH 1/3] spi: meson-axg: support MAX 80M clock In-Reply-To: <20180503213645.20694-2-yixun.lan@amlogic.com> References: <20180503213645.20694-1-yixun.lan@amlogic.com> <20180503213645.20694-2-yixun.lan@amlogic.com> Message-ID: <20180503231305.GC13402@sirena.org.uk> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Thu, May 03, 2018 at 09:36:42PM +0000, Yixun Lan wrote: > static const struct of_device_id meson_spicc_of_match[] = { > - { .compatible = "amlogic,meson-gx-spicc", }, > - { .compatible = "amlogic,meson-axg-spicc", }, > + { > + .compatible = "amlogic,meson-gx-spicc", > + .data = &meson_spicc_gx_data, > + }, > + { > + .compatible = "amlogic,meson-axg-spicc", > + .data = &meson_spicc_axg_data, > + }, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(of, meson_spicc_of_match); This is changing the DT bindings but there's no update to the DT binding documentation, please add an update there. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 488 bytes Desc: not available URL: