Skip to content

Commit

Permalink
remove HDMI aspect ration patch
Browse files Browse the repository at this point in the history
  • Loading branch information
redrathnure committed May 5, 2023
1 parent 99e81c2 commit 59d0ff9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 52 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,30 +267,3 @@ index bf08071e9..b1186e35c 100644
{ .compatible = "semtech,sx1301" },
{ .compatible = "lwn,bk4" },
{ .compatible = "dh,dhcom-board" },


diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c
index 947be761d..334c7243c 100644
--- a/drivers/video/hdmi.c
+++ b/drivers/video/hdmi.c
@@ -1071,6 +1071,8 @@ hdmi_picture_aspect_get_name(enum hdmi_picture_aspect picture_aspect)
return "64:27";
case HDMI_PICTURE_ASPECT_256_135:
return "256:135";
+ case HDMI_PICTURE_ASPECT_5_3:
+ return "5:3";
case HDMI_PICTURE_ASPECT_RESERVED:
return "Reserved";
}
diff --git a/include/linux/hdmi.h b/include/linux/hdmi.h
index c8ec982ff..fbe3c1dbe 100644
--- a/include/linux/hdmi.h
+++ b/include/linux/hdmi.h
@@ -99,6 +99,7 @@ enum hdmi_picture_aspect {
HDMI_PICTURE_ASPECT_16_9,
HDMI_PICTURE_ASPECT_64_27,
HDMI_PICTURE_ASPECT_256_135,
+ HDMI_PICTURE_ASPECT_5_3,
HDMI_PICTURE_ASPECT_RESERVED,
};

Original file line number Diff line number Diff line change
Expand Up @@ -263,28 +263,3 @@ index 3c65d3d7455..c42cefdc0d7 100644
{},
};
MODULE_DEVICE_TABLE(of, spidev_dt_ids);
diff --git a/drivers/video/hdmi.c b/drivers/video/hdmi.c
index 03c7f27dde4..8d68d34ce02 100644
--- a/drivers/video/hdmi.c
+++ b/drivers/video/hdmi.c
@@ -1115,6 +1115,8 @@ hdmi_picture_aspect_get_name(enum hdmi_picture_aspect picture_aspect)
return "64:27";
case HDMI_PICTURE_ASPECT_256_135:
return "256:135";
+ case HDMI_PICTURE_ASPECT_5_3:
+ return "5:3";
case HDMI_PICTURE_ASPECT_RESERVED:
return "Reserved";
}
diff --git a/include/linux/hdmi.h b/include/linux/hdmi.h
index 2f4dcc8d060..a14ffd61e8b 100644
--- a/include/linux/hdmi.h
+++ b/include/linux/hdmi.h
@@ -99,6 +99,7 @@ enum hdmi_picture_aspect {
HDMI_PICTURE_ASPECT_16_9,
HDMI_PICTURE_ASPECT_64_27,
HDMI_PICTURE_ASPECT_256_135,
+ HDMI_PICTURE_ASPECT_5_3,
HDMI_PICTURE_ASPECT_RESERVED,
};

0 comments on commit 59d0ff9

Please sign in to comment.