The following changes since commit 49a57857aeea06ca831043acbb0fa5e0f50602fd:
Linux 5.0-rc3 (2019-01-21 13:14:44 +1300) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git tags/gnss-5.1-rc1 for you to fetch changes up to d4584bbfcf2a8f5b6605be9eba465bba59ce68c8: gnss: add driver for mediatek receivers (2019-02-15 16:54:38 +0100) ---------------------------------------------------------------- GNSS updates for 5.1-rc1 Here are the GNSS updates for 5.1-rc1, including: - a new driver for Mediatek-based receivers - support for SiRF receivers without a wakeup signal - support for a separate LNA supply for SiRF receivers Included are also various clean ups and minor fixes. All have been in linux-next with no reported issues. Signed-off-by: Johan Hovold <[email protected]> ---------------------------------------------------------------- Andreas Kemnade (5): gnss: sirf: write data to gnss only when the gnss device is open gnss: sirf: add support for configurations without wakeup signal dt-bindings: gnss: add w2sg0004 compatible string gnss: sirf: add a separate supply for a lna dt-bindings: gnss: add lna-supply property Johan Hovold (3): gnss: sirf: fix premature wakeup interrupt enable gnss: sirf: force hibernate mode on probe gnss: sirf: drop redundant double negation Loys Ollivier (4): dt-bindings: Add vendor prefix for "GlobalTop Technology, Inc." dt-bindings: gnss: add mediatek binding gnss: add mtk receiver type support gnss: add driver for mediatek receivers Documentation/devicetree/bindings/gnss/gnss.txt | 1 + .../devicetree/bindings/gnss/mediatek.txt | 35 +++ .../devicetree/bindings/gnss/sirfstar.txt | 1 + .../devicetree/bindings/vendor-prefixes.txt | 1 + drivers/gnss/Kconfig | 13 ++ drivers/gnss/Makefile | 3 + drivers/gnss/core.c | 1 + drivers/gnss/mtk.c | 152 ++++++++++++ drivers/gnss/sirf.c | 256 +++++++++++++++++---- include/linux/gnss.h | 1 + 10 files changed, 420 insertions(+), 44 deletions(-) create mode 100644 Documentation/devicetree/bindings/gnss/mediatek.txt create mode 100644 drivers/gnss/mtk.c

