Skip to content

Commit

Permalink
fixup! mux: apple DP xbar: Add Apple silicon DisplayPort crossbar
Browse files Browse the repository at this point in the history
Signed-off-by: Janne Grunau <[email protected]>
  • Loading branch information
jannau authored and marcan committed Dec 13, 2023
1 parent b07f7c0 commit 9c00c62
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/mux/apple-display-crossbar.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ static int apple_dpxbar_set_t602x(struct mux_control *mux, int state)
spin_unlock_irqrestore(&dpxbar->lock, flags);

if (enable)
dev_err(dpxbar->dev, "Switched %s to dispext%u,%u\n",
apple_dpxbar_names[index], mux_state >> 1,
mux_state & 1);
dev_info(dpxbar->dev, "Switched %s to dispext%u,%u\n",
apple_dpxbar_names[index], mux_state >> 1,
mux_state & 1);
else
dev_err(dpxbar->dev, "Switched %s to disconnected state\n",
apple_dpxbar_names[index]);
dev_info(dpxbar->dev, "Switched %s to disconnected state\n",
apple_dpxbar_names[index]);

return ret;
}
Expand Down Expand Up @@ -349,12 +349,12 @@ static int apple_dpxbar_set(struct mux_control *mux, int state)
spin_unlock_irqrestore(&dpxbar->lock, flags);

if (enable)
dev_err(dpxbar->dev, "Switched %s to dispext%u,%u\n",
apple_dpxbar_names[index], mux_state >> 1,
mux_state & 1);
dev_info(dpxbar->dev, "Switched %s to dispext%u,%u\n",
apple_dpxbar_names[index], mux_state >> 1,
mux_state & 1);
else
dev_err(dpxbar->dev, "Switched %s to disconnected state\n",
apple_dpxbar_names[index]);
dev_info(dpxbar->dev, "Switched %s to disconnected state\n",
apple_dpxbar_names[index]);

return ret;
}
Expand Down

0 comments on commit 9c00c62

Please sign in to comment.