drm: apple: mark local functions static
authorkettenis <kettenis@openbsd.org>
Tue, 23 Jan 2024 14:25:07 +0000 (14:25 +0000)
committerkettenis <kettenis@openbsd.org>
Tue, 23 Jan 2024 14:25:07 +0000 (14:25 +0000)
From Arnd Bergmann
c23a90c49c665bfb61f0200e966cef042063e364 in jannau's bits/200-dcp

sys/dev/pci/drm/apple/parser.c

index 44aad9a..ea9f40b 100644 (file)
@@ -694,7 +694,7 @@ int parse_epic_service_init(struct dcp_parse_ctx *handle, const char **name,
        return ret;
 }
 
-int parse_sample_rate_bit(struct dcp_parse_ctx *handle, unsigned int *ratebit)
+static int parse_sample_rate_bit(struct dcp_parse_ctx *handle, unsigned int *ratebit)
 {
        s64 rate;
        int ret = parse_int(handle, &rate);
@@ -715,7 +715,7 @@ int parse_sample_rate_bit(struct dcp_parse_ctx *handle, unsigned int *ratebit)
        return 0;
 }
 
-int parse_sample_fmtbit(struct dcp_parse_ctx *handle, u64 *fmtbit)
+static int parse_sample_fmtbit(struct dcp_parse_ctx *handle, u64 *fmtbit)
 {
        s64 sample_size;
        int ret = parse_int(handle, &sample_size);