From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 47EB4C433F5 for ; Thu, 16 Dec 2021 11:05:16 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 90D7B83049; Thu, 16 Dec 2021 12:05:06 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="XKIj/Y6P"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 9F44182FE2; Thu, 16 Dec 2021 12:04:59 +0100 (CET) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 7F21183045 for ; Thu, 16 Dec 2021 12:04:51 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 30E08B8237B; Thu, 16 Dec 2021 11:04:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DBC6AC36AE4; Thu, 16 Dec 2021 11:04:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1639652690; bh=kTu9ftGa6X0YvqdqLfSm/Rbh5UGlKAKRAEc8vJGr1i4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XKIj/Y6P3DbvjTVlCGnWxmD6HriENUxu9BaWcqsruRe1NmB1W55tELU7CtsthMAoy MfeT5ZE1gMU08t+D6Hexo04HessgkPMgnpMV8G7VEjNKkJp9kfvukJlDWW8j3Soc0t lmYAB1WbzwWl7LJgjiDvvtowIBxoaEFl4iLpqeQvIQs6PnhcdOJZvV1YQtkaoDcfvj udyVGfR7GMozKmCNYlWmHCwu5a5KzzhBQn3vidPg/s07iq74Qj9taCEtmFahj3bArF B9UZKAcSTmZzh2R+R+JGCsqiBg2LuJISYYaq+GTOHYOmUzmg+gu0mReexGIb0PD5HK /1k3Fu9dg019A== Received: by pali.im (Postfix) id BD2E081F; Thu, 16 Dec 2021 12:04:47 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH u-boot-marvell 2/2] arm: mvebu: serial: Add me as co-maintainer and author of Marvell serial drivers Date: Thu, 16 Dec 2021 12:04:07 +0100 Message-Id: <20211216110407.828-3-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20211216110407.828-1-pali@kernel.org> References: <20211216110407.828-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean There is no maintainer entry for serial_mvebu_a3700.c. Add entry with Pali and Stefan as maintainers. Signed-off-by: Pali Rohár --- MAINTAINERS | 7 +++++++ drivers/serial/serial_mvebu_a3700.c | 1 + 2 files changed, 8 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 378afd92393d..245310657354 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -284,6 +284,13 @@ T: git https://source.denx.de/u-boot/custodians/u-boot-marvell.git F: drivers/pci/pci-aardvark.c F: drivers/pci/pci_mvebu.c +ARM MARVELL SERIAL DRIVERS +M: Pali Rohár +M: Stefan Roese +S: Maintained +T: git https://source.denx.de/u-boot/custodians/u-boot-marvell.git +F: drivers/serial/serial_mvebu_a3700.c + ARM MARVELL PXA M: Marek Vasut S: Maintained diff --git a/drivers/serial/serial_mvebu_a3700.c b/drivers/serial/serial_mvebu_a3700.c index 728f4af62fd8..1e1d39e70a37 100644 --- a/drivers/serial/serial_mvebu_a3700.c +++ b/drivers/serial/serial_mvebu_a3700.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2016 Stefan Roese + * Copyright (C) 2021 Pali Rohár */ #include -- 2.20.1