Message ID | 20210121231237.30664-2-danielwa@cisco.com |
---|---|
State | Accepted |
Commit | 396cf2a46adddbf51373e16225c1d25254310046 |
Headers | show |
Series | None | expand |
On Thu, Jan 21, 2021 at 03:12:36PM -0800, Daniel Walker wrote: > Add compatible string for Cisco device present on the Cisco Petra > platform. I'm missing patch 1 of this series, what's the story with dependencies?
On Fri, Jan 22, 2021 at 01:26:16PM +0000, Mark Brown wrote: > On Thu, Jan 21, 2021 at 03:12:36PM -0800, Daniel Walker wrote: > > Add compatible string for Cisco device present on the Cisco Petra > > platform. > > I'm missing patch 1 of this series, what's the story with dependencies? The other commit is the usage of this change in a new DTS file, Here is the link, https://lkml.org/lkml/2021/1/21/1469 Daniel
On Thu, 21 Jan 2021 15:12:36 -0800, Daniel Walker wrote: > Add compatible string for Cisco device present on the Cisco Petra > platform. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [2/2] spidev: Add cisco device compatible commit: 396cf2a46adddbf51373e16225c1d25254310046 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
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index 859910ec8d9f..8cb4d923aeaa 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -682,6 +682,7 @@ static const struct of_device_id spidev_dt_ids[] = { { .compatible = "lwn,bk4" }, { .compatible = "dh,dhcom-board" }, { .compatible = "menlo,m53cpld" }, + { .compatible = "cisco,spi-petra" }, {}, }; MODULE_DEVICE_TABLE(of, spidev_dt_ids);
Add compatible string for Cisco device present on the Cisco Petra platform. Signed-off-by: Daniel Walker <danielwa@cisco.com> Cc: xe-linux-external@cisco.com --- drivers/spi/spidev.c | 1 + 1 file changed, 1 insertion(+)