diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-06-17 02:29:48 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-08-06 01:59:56 +0300 |
commit | e6732ee32837d14023bdf85fbe3b08311337a0a6 (patch) | |
tree | 4b807ebeec8ed631fbd96bb7ec36270ef56f0aba /utils | |
parent | 740c330f4c8ee2e0eb1b5b3dfa44f33ac7a68c7a (diff) |
card: Rename has_has_universal_planes to has_universal_planes
The has_has_universal_planes() method name includes a typo, fix it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/kmsprint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp index 807aa62..9d3d7cc 100644 --- a/utils/kmsprint.cpp +++ b/utils/kmsprint.cpp @@ -372,7 +372,7 @@ static void print_as_list(Card& card) for (Crtc* crtc : card.get_crtcs()) { obs.push_back(crtc); - if (crtc->buffer_id() && !card.has_has_universal_planes()) { + if (crtc->buffer_id() && !card.has_universal_planes()) { Framebuffer* fb = new Framebuffer(card, crtc->buffer_id()); fbs.push_back(fb); } @@ -423,7 +423,7 @@ static void print_as_tree(Card& card) if (s_opts.print_props) e3.lines = format_props(crtc); - if (crtc->buffer_id() && !card.has_has_universal_planes()) { + if (crtc->buffer_id() && !card.has_universal_planes()) { Framebuffer fb(card, crtc->buffer_id()); Entry& e5 = add_entry(e3.children); |