X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fmux.h;h=9f809912742f17691bf8a5e97cd1cd8f0d1ad7c3;hb=6786ce1ce14feb4d02854a0c04bc0cce505be46e;hp=23844f480ac1156fdf2ee23bf43b64c71e0e36f0;hpb=eca57cafa521345b2fc71616ae47245598dad53d;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/mux.h b/include/mux.h index 23844f4..9f80991 100644 --- a/include/mux.h +++ b/include/mux.h @@ -51,7 +51,7 @@ unsigned int mux_control_states(struct mux_control *mux); */ int __must_check mux_control_select(struct mux_control *mux, unsigned int state); -#define mux_control_try_select(mux) mux_control_select(mux) +#define mux_control_try_select(mux, state) mux_control_select(mux, state) /** * mux_control_deselect() - Deselect the previously selected multiplexer state. @@ -128,7 +128,7 @@ int __must_check mux_control_select(struct mux_control *mux, return -ENOSYS; } -#define mux_control_try_select(mux) mux_control_select(mux) +#define mux_control_try_select(mux, state) mux_control_select(mux, state) int mux_control_deselect(struct mux_control *mux) {