Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Oct 2022 00:12:54 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 881fca442f6e - main - arm: Catch up with Samsung S3C2xx0 code removal
Message-ID:  <202210010012.2910Cs1S055596@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

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

commit 881fca442f6e0b3d665795bc7df345d2d230c951
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-10-01 00:10:42 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-10-01 00:12:10 +0000

    arm: Catch up with Samsung S3C2xx0 code removal
    
    The code backing these uart_class was removed 7 years ago in
    4648ee952520.
    
    Sponsored by:           Netflix
---
 sys/dev/uart/uart.h      | 1 -
 sys/dev/uart/uart_subr.c | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h
index ed3b7017d746..d756b587b11d 100644
--- a/sys/dev/uart/uart.h
+++ b/sys/dev/uart/uart.h
@@ -103,7 +103,6 @@ struct uart_class;
 
 extern struct uart_class uart_ns8250_class __attribute__((weak));
 extern struct uart_class uart_quicc_class __attribute__((weak));
-extern struct uart_class uart_s3c2410_class __attribute__((weak));
 extern struct uart_class uart_sbbc_class __attribute__((weak));
 extern struct uart_class uart_z8530_class __attribute__((weak));
 
diff --git a/sys/dev/uart/uart_subr.c b/sys/dev/uart/uart_subr.c
index e6dec58d7705..7b2d013ec219 100644
--- a/sys/dev/uart/uart_subr.c
+++ b/sys/dev/uart/uart_subr.c
@@ -54,9 +54,6 @@ __FBSDID("$FreeBSD$");
 static struct uart_class *uart_classes[] = {
 	&uart_ns8250_class,
 	&uart_z8530_class,
-#if defined(__arm__)
-	&uart_s3c2410_class,
-#endif
 };
 
 static bus_addr_t



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