diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-06-19 11:55:21 +0100 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-06-20 09:05:23 +0200 |
commit | c37f69ff2e6a4cfe6794c825b3b5b59e9429bdec (patch) | |
tree | 6f53b1e00c7943e9104bbefe6e8b4c2458f28a48 | |
parent | 63709fd4296221aa4ebd06230bce3eed70ddd927 (diff) |
mmc: sdhci-pci: make guid intel_dsm_guid static
The guid intel_dsm_guid does not need to be in global scope, so make it
static.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r-- | drivers/mmc/host/sdhci-pci-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c index 9577beb278e7..18957fea82ff 100644 --- a/drivers/mmc/host/sdhci-pci-core.c +++ b/drivers/mmc/host/sdhci-pci-core.c @@ -404,7 +404,7 @@ struct intel_host { bool d3_retune; }; -const guid_t intel_dsm_guid = +static const guid_t intel_dsm_guid = GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F, 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61); |