Re: [OSS-Tools] [PATCH microcom 1/2] Handle EOF from port with a better error message

2018-07-05 Thread Uwe Kleine-König
Hallo Michael, On Thu, Jul 05, 2018 at 09:00:21AM +0200, Michael Olbrich wrote: > On Wed, Jul 04, 2018 at 06:29:11PM +0200, Uwe Kleine-König wrote: > > diff --git a/.travis.yml b/.travis.yml > > deleted file mode 100644 > > index 0723a3a0a433.. > > --- a/.t

[OSS-Tools] [PATCH microcom 1/2] Handle EOF from port with a better error message

2018-07-04 Thread Uwe Kleine-König
If in the rfc2217 case the socket is closed from the remote end, writing out "Invalid argument" isn't very helpful. Signed-off-by: Uwe Kleine-König --- .travis.yml | 7 --- mux.c | 6 -- 2 files changed, 4 insertions(+), 9 deletions(-) delete mode 100644 .travis.yml

Re: [OSS-Tools] [PATCH 1/2] serial: open port with O_NONBLOCK

2018-03-06 Thread Uwe Kleine-König
On Tue, Mar 06, 2018 at 10:44:43AM +0100, Uwe Kleine-König wrote: > I don't know when this is necessary, but sometimes the pl2303 on an > espressobin board blocks on open() otherwise. kermit uses O_NONBLOCK, > too. > > Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutr

[OSS-Tools] [PATCH 2/2] Advertise oss-tools@pengutronix.de as address to send patches to.

2018-03-06 Thread Uwe Kleine-König
Signed-off-by: Uwe Kleine-König <u.kleine-koe...@pengutronix.de> --- COPYING | 3 ++- configure.ac | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/COPYING b/COPYING index 334c1fd31758..d7c552d86d0e 100644 --- a/COPYING +++ b/COPYING @@ -11,7 +11,8 @@ line r

Re: [OSS-Tools] [PATCH dt-utils 11/12] state: fix formatting of "off_t" variables

2019-02-04 Thread Uwe Kleine-König
on releases prior to Solaris 10 will experience undefined behavior Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | ___ OSS-Tools mailing list OSS-Tools@pengutronix.de

Re: [OSS-Tools] [PATCH dt-utils] state: backend_bucket_circular: fix double free()

2019-09-18 Thread Uwe Kleine-König
Reviewed-by: Uwe Kleine-König Best regards and thanks Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | http://www.pengutronix.de/ | ___ OSS-Tools mailing list OSS-Tools@pengutronix.de

Re: [OSS-Tools] [PATCH dt-utils 1/4] treewide: add SPDX identifiers to files with GPL-2.0-or-later license

2021-03-30 Thread Uwe Kleine-König
On Fri, Mar 26, 2021 at 10:06:44PM +0100, Roland Hieber wrote: > Signed-off-by: Roland Hieber Reviewed-by: Uwe Kleine-König -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | https://www.pengutronix.de/ | signature.

Re: [OSS-Tools] [PATCH dt-utils 1/4] treewide: add SPDX identifiers to files with GPL-2.0-or-later license

2021-03-30 Thread Uwe Kleine-König
So I don't regret having given my Review-tags. Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | https://www.pengutronix.de/ | signature.asc Description: PGP signature ___

Re: [OSS-Tools] [PATCH dt-utils 2/4] treewide: add SPDX identifiers to files with GPL-2.0-only license

2021-03-30 Thread Uwe Kleine-König
Hallo Roland, On Fri, Mar 26, 2021 at 10:06:45PM +0100, Roland Hieber wrote: > Signed-off-by: Roland Hieber Reviewed-by: Uwe Kleine-König Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial Linux Solutions | ht

Re: [OSS-Tools] [PATCH dt-utils 3/4] treewide: add SPDX identifier to files with Zlib license

2021-03-30 Thread Uwe Kleine-König
5-1998 Mark Adler - * For conditions of distribution and use, see copyright notice in zlib.h */ #include should be equivalent and isn't any longer. Or is it only me who considers this obviously better? Other than that: Reviewed-by: Uwe Kleine-König Best regards Uwe -- P

Re: [OSS-Tools] [PATCH 3/8] libdt: drop broken if-branch

2023-06-07 Thread Uwe Kleine-König
the contract of the function. Just drop the branch for now and add back > it later in a way that works. s/add back it/add it back/ Otherwise: Reviewed-by: Uwe Kleine-König Thanks Uwe -- Pengutronix e.K. | Uwe Kleine-König| Industrial

Re: [OSS-Tools] [PATCH] libdt: fix of_get_devicepath looking up sibling if device unavailable

2023-06-07 Thread Uwe Kleine-König
it above, > + * it's an error. Falling through would mean to handle it as a > + * partition and could lead us to return an arbitrary sibling > device >*/ > + return -ENODEV; I don't remember the details of 929ed64cb42f any more, b

[OSS-Tools] [PATCH dt-utils] dtblint: add support for fsl, imx8mp-iomuxc

2024-04-02 Thread Uwe Kleine-König
Signed-off-by: Uwe Kleine-König --- src/dtblint-imx-pinmux.c | 1317 ++ 1 file changed, 1317 insertions(+) diff --git a/src/dtblint-imx-pinmux.c b/src/dtblint-imx-pinmux.c index 1fa2add28f85..9f36fec7ffc9 100644 --- a/src/dtblint-imx-pinmux.c +++ b/src

[OSS-Tools] [PATCH v2] dtblint: add support for fsl,imx8mp-iomuxc

2024-04-02 Thread Uwe Kleine-König
Signed-off-by: Uwe Kleine-König --- src/dtblint-imx-pinmux.c | 1315 ++ 1 file changed, 1315 insertions(+) diff --git a/src/dtblint-imx-pinmux.c b/src/dtblint-imx-pinmux.c index 1fa2add28f85..02ed50af4b59 100644 --- a/src/dtblint-imx-pinmux.c +++ b/src

Re: [OSS-Tools] [PATCH dt-utils] dtblint: add support for fsl, imx8mp-iomuxc

2024-04-02 Thread Uwe Kleine-König
Hello Ahmad, On Tue, Apr 02, 2024 at 04:44:33PM +0200, Ahmad Fatoum wrote: > On 02.04.24 15:09, Uwe Kleine-König wrote: > > Signed-off-by: Uwe Kleine-König > > Please add the version of the reference manual you took these values from. Good idea. I'd even add it to the s

[OSS-Tools] [PATCH dt-utils v3] dtblint: add support for fsl, imx8mp-iomuxc

2024-04-08 Thread Uwe Kleine-König
From: Uwe Kleine-König Signed-off-by: Uwe Kleine-König --- Hello, Changes since v2: - Document version of the reference manual used to create the register array. - Add a comment describing the commented out register information - Add writeable_mask info for additional registers Changes