From mboxrd@z Thu Jan 1 00:00:00 1970 From: Loys Ollivier Subject: [PATCH v2 3/4] gnss: add mtk receiver type support Date: Thu, 17 Jan 2019 17:54:33 +0100 Message-ID: <1547744074-28308-4-git-send-email-lollivier@baylibre.com> References: <1547744074-28308-1-git-send-email-lollivier@baylibre.com> Return-path: In-Reply-To: <1547744074-28308-1-git-send-email-lollivier@baylibre.com> Sender: linux-kernel-owner@vger.kernel.org To: devicetree@vger.kernel.org, Johan Hovold Cc: Loys Ollivier , Rob Herring , Mark Rutland , linux-kernel@vger.kernel.org, Kevin Hilman , linux-amlogic@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Martin Blumenstingl List-Id: devicetree@vger.kernel.org Add an MTK (Mediatek) type to the "GNSS_TYPE" attribute. Note that MTK receivers support a subset of NMEA 0183 with vendor extensions (e.g. to allow switching to the vendor protocol). Signed-off-by: Loys Ollivier --- v2: renamed from GTOP to MTK. include/linux/gnss.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/gnss.h b/include/linux/gnss.h index 43546977098c..36968a0f33e8 100644 --- a/include/linux/gnss.h +++ b/include/linux/gnss.h @@ -22,6 +22,7 @@ enum gnss_type { GNSS_TYPE_NMEA = 0, GNSS_TYPE_SIRF, GNSS_TYPE_UBX, + GNSS_TYPE_MTK, GNSS_TYPE_COUNT }; -- 2.7.4