Re: [PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct sdhci_ops

2024-04-19 Thread Greg Malysa
Hi, > Some target are failed to build. (e.g, j721e_beagleboneai64_r5) > > +drivers/mmc/sdhci-adma.c: In function '__sdhci_adma_write_desc': > +drivers/mmc/sdhci-adma.c:37:43: error: 'const struct sdhci_ops' has no > member named 'adma_write_desc' > + 37 | if (host && host->ops &&

RE: [PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct sdhci_ops

2024-04-18 Thread Jaehoon Chung
> 'Peter Geis' > ; 'Sean Anderson' ; 'Simon > Glass' ; > 'Tom Rini' > Subject: RE: [PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct > sdhci_ops > > > > > -Original Message- > > From: Greg Malysa > > Sent: Tuesday, March 26,

RE: [PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct sdhci_ops

2024-04-16 Thread Jaehoon Chung
eis ; Sean Anderson > ; Simon Glass > ; Tom Rini > Subject: [PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct > sdhci_ops > > From: Ian Roberts > > Add this hook so that it can be overridden with driver specific > implementations. We also let the origin

[PATCH] mmc: sdhci: introduce adma_write_desc() hook to struct sdhci_ops

2024-03-25 Thread Greg Malysa
From: Ian Roberts Add this hook so that it can be overridden with driver specific implementations. We also let the original sdhci_adma_write_desc() accept so that the function can set its new value. Then export the function so that it could be reused by driver's specific implementations. The