On 26. 04. 22, 9:10, Wan Jiabing wrote:
Use if and else instead of if(A) and if (!A).

Reviewed-by: Jiri Slaby <jirisl...@kernel.org>

Signed-off-by: Wan Jiabing <wanjiab...@vivo.com>
---
Change log:
v2:
- add braces to the if block.
---
  drivers/tty/hvc/hvc_opal.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c
index 84776bc641e6..794c7b18aa06 100644
--- a/drivers/tty/hvc/hvc_opal.c
+++ b/drivers/tty/hvc/hvc_opal.c
@@ -342,9 +342,9 @@ void __init hvc_opal_init_early(void)
                 * path, so we hard wire it
                 */
                opal = of_find_node_by_path("/ibm,opal/consoles");
-               if (opal)
+               if (opal) {
                        pr_devel("hvc_opal: Found consoles in new location\n");
-               if (!opal) {
+               } else {
                        opal = of_find_node_by_path("/ibm,opal");
                        if (opal)
                                pr_devel("hvc_opal: "


--
js
suse labs

Reply via email to