Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Sep 2024 05:08:37 GMT
From:      Zhenlei Huang <zlei@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: eded71c830ee - stable/13 - sdhci(4): Stop checking for failures from malloc(M_WAITOK)
Message-ID:  <202409300508.48U58b8R025661@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by zlei:

URL: https://cgit.FreeBSD.org/src/commit/?id=eded71c830ee9cb85dee897418e47e2828116eb1

commit eded71c830ee9cb85dee897418e47e2828116eb1
Author:     Zhenlei Huang <zlei@FreeBSD.org>
AuthorDate: 2024-09-03 10:25:34 +0000
Commit:     Zhenlei Huang <zlei@FreeBSD.org>
CommitDate: 2024-09-30 05:05:39 +0000

    sdhci(4): Stop checking for failures from malloc(M_WAITOK)
    
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D45852
    
    (cherry picked from commit f80483cdd58a032ae2cfb2b9119824e9badc2c91)
    (cherry picked from commit 5a7db2ff56f9e08579913ae16850ff82617001dc)
---
 sys/dev/sdhci/sdhci_xenon_acpi.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/sys/dev/sdhci/sdhci_xenon_acpi.c b/sys/dev/sdhci/sdhci_xenon_acpi.c
index 8699b26cff68..f130f03fc572 100644
--- a/sys/dev/sdhci/sdhci_xenon_acpi.c
+++ b/sys/dev/sdhci/sdhci_xenon_acpi.c
@@ -88,8 +88,6 @@ sdhci_xenon_acpi_attach(device_t dev)
 	memset(&mmc_helper, 0, sizeof(mmc_helper));
 
 	slot = malloc(sizeof(*slot), M_DEVBUF, M_ZERO | M_WAITOK);
-	if (!slot)
-		return (ENOMEM);
 
 	/*
 	 * Don't use regularators.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409300508.48U58b8R025661>