소스 검색

serial: kgdb_nmi: Use bool function return values of true/false not 1/0

Use the normal return values for bool functions

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Joe Perches 10 년 전
부모
커밋
cbc7f6bd8f
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      drivers/tty/serial/kgdb_nmi.c

+ 3 - 3
drivers/tty/serial/kgdb_nmi.c

@@ -173,18 +173,18 @@ static int kgdb_nmi_poll_one_knock(void)
 bool kgdb_nmi_poll_knock(void)
 bool kgdb_nmi_poll_knock(void)
 {
 {
 	if (kgdb_nmi_knock < 0)
 	if (kgdb_nmi_knock < 0)
-		return 1;
+		return true;
 
 
 	while (1) {
 	while (1) {
 		int ret;
 		int ret;
 
 
 		ret = kgdb_nmi_poll_one_knock();
 		ret = kgdb_nmi_poll_one_knock();
 		if (ret == NO_POLL_CHAR)
 		if (ret == NO_POLL_CHAR)
-			return 0;
+			return false;
 		else if (ret == 1)
 		else if (ret == 1)
 			break;
 			break;
 	}
 	}
-	return 1;
+	return true;
 }
 }
 
 
 /*
 /*