drm/apple: spelling fixes
authorkettenis <kettenis@openbsd.org>
Tue, 23 Jan 2024 14:30:13 +0000 (14:30 +0000)
committerkettenis <kettenis@openbsd.org>
Tue, 23 Jan 2024 14:30:13 +0000 (14:30 +0000)
From Jonathan Gray
cee29f9bcbf9574ce1ae19e586728a9d85c3db05 in jannau's bits/200-dcp

sys/dev/pci/drm/apple/apple_drv.c
sys/dev/pci/drm/apple/dcp-internal.h
sys/dev/pci/drm/apple/dcp.c
sys/dev/pci/drm/apple/iomfb.c
sys/dev/pci/drm/apple/iomfb_template.c
sys/dev/pci/drm/apple/iomfb_v13_3.c

index 39dbc93..d893c61 100644 (file)
@@ -459,7 +459,7 @@ static int apple_drm_init_dcp(struct device *dev)
                ret = dcp_wait_ready(dcp[i], wait);
                /* There is nothing we can do if a dcp/dcpext does not boot
                 * (successfully). Ignoring it should not do any harm now.
-                * Needs to reevaluated whenn adding dcpext support.
+                * Needs to reevaluated when adding dcpext support.
                 */
                if (ret)
                        dev_warn(dev, "DCP[%d] not ready: %d\n", i, ret);
index 1503acb..55d6303 100644 (file)
@@ -95,7 +95,7 @@ struct dcp_panel {
        int width_mm;
        /// panel height in millimeter
        int height_mm;
-       /// panel has a mini-LED backllight
+       /// panel has a mini-LED backlight
        bool has_mini_led;
 };
 
index 9834307..6eb2d55 100644 (file)
@@ -809,7 +809,7 @@ static int dcp_comp_bind(struct device *dev, struct device *main, void *data)
        if (dcp->notch_height > 0)
                dev_info(dev, "Detected display with notch of %u pixel\n", dcp->notch_height);
 
-       /* intialize brightness scale to a sensible default to avoid divide by 0*/
+       /* initialize brightness scale to a sensible default to avoid divide by 0*/
        dcp->brightness.scale = 65536;
        panel_np = of_get_compatible_child(dev->of_node, "apple,panel-mini-led");
        if (panel_np)
@@ -878,7 +878,7 @@ static int dcp_comp_bind(struct device *dev, struct device *main, void *data)
        dcp->rtk = devm_apple_rtkit_init(dev, dcp, "mbox", 0, &rtkit_ops);
        if (IS_ERR(dcp->rtk))
                return dev_err_probe(dev, PTR_ERR(dcp->rtk),
-                                    "Failed to intialize RTKit");
+                                    "Failed to initialize RTKit");
 
        ret = apple_rtkit_wake(dcp->rtk);
        if (ret)
index b179c18..2944911 100644 (file)
@@ -274,7 +274,7 @@ static void dcpep_handle_cb(struct apple_dcp *dcp, enum dcp_context_id context,
        out = in + hdr->in_len;
 
        // TODO: verify that in_len and out_len match our prototypes
-       // for now just clear the out data to have at least consistant results
+       // for now just clear the out data to have at least consistent results
        if (hdr->out_len)
                memset(out, 0, hdr->out_len);
 
index 49ddca6..7c8dc5a 100644 (file)
@@ -326,7 +326,7 @@ static void dcpep_cb_unmap_piodma(struct apple_dcp *dcp,
 
 /*
  * Allocate an IOVA contiguous buffer mapped to the DCP. The buffer need not be
- * physically contigiuous, however we should save the sgtable in case the
+ * physically contiguous, however we should save the sgtable in case the
  * buffer needs to be later mapped for PIODMA.
  */
 static struct dcp_allocate_buffer_resp
index 1ee2911..115490f 100644 (file)
@@ -53,7 +53,7 @@ static const iomfb_cb_handler cb_handlers[IOMFB_MAX_CB] = {
        [110] = trampoline_true, /* create_pmu_service */
        [111] = trampoline_true, /* create_iomfb_service */
        [112] = trampoline_create_backlight_service,
-       [113] = trampoline_true, /* create_nvram_servce? */
+       [113] = trampoline_true, /* create_nvram_service? */
        [114] = trampoline_get_tiling_state,
        [115] = trampoline_false, /* set_tiling_state */
        [120] = dcpep_cb_boot_1,