Re: [PATCH 1/1] rtemsbsd/sdhci: Fix Arasan driver when no card present

2023-03-23 Thread Kinsey Moore
On Thu, Mar 23, 2023 at 7:19 PM Rick VanderWal wrote: > > On 3/23/23 10:26, Kinsey Moore wrote: > > On Wed, Mar 22, 2023 at 7:02 PM wrote: > >> >> + if (!(RD4(sc, SDHCI_PRESENT_STATE) & SDHCI_CARD_STABLE)) >> + { >> + device_printf(dev, >> + "CD

Re: [PATCH 1/1] rtemsbsd/sdhci: Fix Arasan driver when no card present

2023-03-23 Thread Rick VanderWal
Kinsey, Thanks for the feedback! I added the git config as recommended. Response to your comment is inline below. Regards, -Rick On 3/23/23 10:26, Kinsey Moore wrote: Hey Rick, This looks good for the most part and thanks for the contribution. For future patches, please make sure you

Re: [PATCH 1/1] rtemsbsd/sdhci: Fix Arasan driver when no card present

2023-03-23 Thread Kinsey Moore
Hey Rick, This looks good for the most part and thanks for the contribution. For future patches, please make sure you specify the repository in your subject line if the patch isn't for the RTEMS repository. This can be configured to occur automatically in your local per-repo git configuration

[PATCH 1/1] rtemsbsd/sdhci: Fix Arasan driver when no card present

2023-03-22 Thread rvanderwal
From: Rick VanderWal This fixes an issue where the card present signal doesn't stabilize quickly and indicates present when no card is inserted in a removable slot. --- rtemsbsd/sys/dev/sdhci/arasan_sdhci.c | 20 1 file changed, 20 insertions(+) diff --git