meta-phosphor: prefer https protocol

A few recipes are specifying 'protocol=git' to the git-fetcher, which is
already the default[1].  For github URLs, upstream Yocto / OE suggest
that 'protocol=https' is used[2].  Switch any URL that has a protocol
specified to be 'https' instead of 'git'.

1. https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-fetching.html#git-fetcher-git
2. https://lists.openembedded.org/g/openembedded-devel/message/94255

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ibf1ab0fa2cb83c8cb9f4e535a0781f41e3b0dafe
diff --git a/meta-phosphor/recipes-phosphor/sel-logger/phosphor-sel-logger_git.bb b/meta-phosphor/recipes-phosphor/sel-logger/phosphor-sel-logger_git.bb
index 6c10cb7..a80b3e7 100644
--- a/meta-phosphor/recipes-phosphor/sel-logger/phosphor-sel-logger_git.bb
+++ b/meta-phosphor/recipes-phosphor/sel-logger/phosphor-sel-logger_git.bb
@@ -21,7 +21,7 @@
   systemd \
   "
 
-SRC_URI = "git://github.com/openbmc/phosphor-sel-logger.git;protocol=git"
+SRC_URI = "git://github.com/openbmc/phosphor-sel-logger.git;protocol=https"
 SRCREV = "87e3fcf439f2b943272365e1d294984f39bb52b8"
 
 PV = "0.1+git${SRCPV}"