Skip to content

Commit

Permalink
msm: mdss: Fix strict-prototypes error
Browse files Browse the repository at this point in the history
Change-Id: I59c35db0bbf8d15e8b814ae7b729c8301ac4ed97
  • Loading branch information
luk1337 authored and chrmhoffmann committed Nov 7, 2023
1 parent 0ad04db commit cbdce56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/video/fbdev/msm/mdss_mdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4835,7 +4835,7 @@ struct mdss_panel_cfg *mdss_panel_intf_type(int intf_val)
}
EXPORT_SYMBOL(mdss_panel_intf_type);

struct irq_info *mdss_intr_line()
struct irq_info *mdss_intr_line(void)
{
return mdss_mdp_hw.irq_info;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/fbdev/msm/mdss_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ struct mdss_util_intf mdss_util = {
.mdp_probe_done = false
};

struct mdss_util_intf *mdss_get_util_intf()
struct mdss_util_intf *mdss_get_util_intf(void)
{
return &mdss_util;
}
Expand Down

0 comments on commit cbdce56

Please sign in to comment.