Bug 229786 - src/sys/arm/samsung/exynos/exynos5_ehci.c:363]: (warning) Identical condition
Summary: src/sys/arm/samsung/exynos/exynos5_ehci.c:363]: (warning) Identical condition
Status: Closed Overcome By Events
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: CURRENT
Hardware: Any Any
: --- Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-07-15 15:08 UTC by David Binderman
Modified: 2021-11-05 13:46 UTC (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description David Binderman 2018-07-15 15:08:19 UTC
Source code is

        if (sc->sc_flags & EHCI_SCFLG_DONEINIT)
                return (0);

        /*
         * only call ehci_detach() after ehci_init()
         */
        if (sc->sc_flags & EHCI_SCFLG_DONEINIT) {
                ehci_detach(sc);
                sc->sc_flags &= ~EHCI_SCFLG_DONEINIT;
        }
Comment 1 Ed Maste freebsd_committer freebsd_triage 2021-11-05 13:46:05 UTC
Code in question has been removed by:

commit 33ab8d095ad7d733f4e35d97627ac944db234bbb
Author: Emmanuel Vadot <manu@FreeBSD.org>
Date:   Thu Dec 17 17:09:43 2020 +0000

    arm: Remove samsung exnynos port
    
    Remove the exynos SoC support, this haven't been updated in a while,
    isn't present in GENERIC and nobody is motivated to resurect it.
    
    Differential Revision:  https://reviews.freebsd.org/D24444

Notes:
    svn path=/head/; revision=368724