* [PATCH 05/12] gpu: fix typo
@ 2019-01-04 21:41 Matteo Croce
2019-01-04 21:54 ` Matteo Croce
2019-01-07 10:50 ` Daniel Vetter
0 siblings, 2 replies; 3+ messages in thread
From: Matteo Croce @ 2019-01-04 21:41 UTC (permalink / raw)
To: David Airlie, Daniel Vetter; +Cc: dri-devel
Fix spelling mistake: "lenght" -> "length"
Signed-off-by: Matteo Croce <mcroce@redhat.com>
---
drivers/gpu/drm/amd/include/atombios.h | 2 +-
drivers/gpu/drm/omapdrm/dss/hdmi4_core.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/include/atombios.h b/drivers/gpu/drm/amd/include/atombios.h
index 7931502fa54f..8ba21747b40a 100644
--- a/drivers/gpu/drm/amd/include/atombios.h
+++ b/drivers/gpu/drm/amd/include/atombios.h
@@ -4106,7 +4106,7 @@ typedef struct _ATOM_LCD_MODE_CONTROL_CAP
typedef struct _ATOM_FAKE_EDID_PATCH_RECORD
{
UCHAR ucRecordType;
- UCHAR ucFakeEDIDLength; // = 128 means EDID lenght is 128 bytes, otherwise the EDID length = ucFakeEDIDLength*128
+ UCHAR ucFakeEDIDLength; // = 128 means EDID length is 128 bytes, otherwise the EDID length = ucFakeEDIDLength*128
UCHAR ucFakeEDIDString[1]; // This actually has ucFakeEdidLength elements.
} ATOM_FAKE_EDID_PATCH_RECORD;
diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c b/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
index 813ba42f2753..e384b95ad857 100644
--- a/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
+++ b/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
@@ -708,7 +708,7 @@ int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
else
acore.i2s_cfg.justification = HDMI_AUDIO_JUSTIFY_RIGHT;
/*
- * The I2S input word length is twice the lenght given in the IEC-60958
+ * The I2S input word length is twice the length given in the IEC-60958
* status word. If the word size is greater than
* 20 bits, increment by one.
*/
--
2.20.1
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 05/12] gpu: fix typo
2019-01-04 21:41 [PATCH 05/12] gpu: fix typo Matteo Croce
@ 2019-01-04 21:54 ` Matteo Croce
2019-01-07 10:50 ` Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Matteo Croce @ 2019-01-04 21:54 UTC (permalink / raw)
To: David Airlie, Daniel Vetter; +Cc: dri-devel
On Fri, Jan 4, 2019 at 10:41 PM Matteo Croce <mcroce@redhat.com> wrote:
>
> Fix spelling mistake: "lenght" -> "length"
>
> Signed-off-by: Matteo Croce <mcroce@redhat.com>
> ---
> drivers/gpu/drm/amd/include/atombios.h | 2 +-
> drivers/gpu/drm/omapdrm/dss/hdmi4_core.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
Hi,
this patch was pulled from a 12 patches series and sent alone, please
discard the "05/12" in the subject
--
Matteo Croce
per aspera ad upstream
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 05/12] gpu: fix typo
2019-01-04 21:41 [PATCH 05/12] gpu: fix typo Matteo Croce
2019-01-04 21:54 ` Matteo Croce
@ 2019-01-07 10:50 ` Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Vetter @ 2019-01-07 10:50 UTC (permalink / raw)
To: Matteo Croce; +Cc: David Airlie, dri-devel
On Fri, Jan 04, 2019 at 10:41:15PM +0100, Matteo Croce wrote:
> Fix spelling mistake: "lenght" -> "length"
>
> Signed-off-by: Matteo Croce <mcroce@redhat.com>
> ---
> drivers/gpu/drm/amd/include/atombios.h | 2 +-
> drivers/gpu/drm/omapdrm/dss/hdmi4_core.c | 2 +-
Best to split this up into an amd and omapdrm patch (and send to each
respective maintainer), they're maintained in separate trees.
Thanks, Daniel
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/include/atombios.h b/drivers/gpu/drm/amd/include/atombios.h
> index 7931502fa54f..8ba21747b40a 100644
> --- a/drivers/gpu/drm/amd/include/atombios.h
> +++ b/drivers/gpu/drm/amd/include/atombios.h
> @@ -4106,7 +4106,7 @@ typedef struct _ATOM_LCD_MODE_CONTROL_CAP
> typedef struct _ATOM_FAKE_EDID_PATCH_RECORD
> {
> UCHAR ucRecordType;
> - UCHAR ucFakeEDIDLength; // = 128 means EDID lenght is 128 bytes, otherwise the EDID length = ucFakeEDIDLength*128
> + UCHAR ucFakeEDIDLength; // = 128 means EDID length is 128 bytes, otherwise the EDID length = ucFakeEDIDLength*128
> UCHAR ucFakeEDIDString[1]; // This actually has ucFakeEdidLength elements.
> } ATOM_FAKE_EDID_PATCH_RECORD;
>
> diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c b/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
> index 813ba42f2753..e384b95ad857 100644
> --- a/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
> +++ b/drivers/gpu/drm/omapdrm/dss/hdmi4_core.c
> @@ -708,7 +708,7 @@ int hdmi4_audio_config(struct hdmi_core_data *core, struct hdmi_wp_data *wp,
> else
> acore.i2s_cfg.justification = HDMI_AUDIO_JUSTIFY_RIGHT;
> /*
> - * The I2S input word length is twice the lenght given in the IEC-60958
> + * The I2S input word length is twice the length given in the IEC-60958
> * status word. If the word size is greater than
> * 20 bits, increment by one.
> */
> --
> 2.20.1
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-01-07 10:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-04 21:41 [PATCH 05/12] gpu: fix typo Matteo Croce
2019-01-04 21:54 ` Matteo Croce
2019-01-07 10:50 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox