diff options
| author | 2018-08-28 09:58:03 -0700 | |
|---|---|---|
| committer | 2018-08-28 09:58:03 -0700 | |
| commit | ea4d65f14f6aaa53e379b93c5544245ef081b3e7 (patch) | |
| tree | a15485f4f1cf547a52b31fa8e16e14b9579b7200 /kernel/watchdog_hld.c | |
| parent | arm: dts: am4372: setup rtc as system-power-controller (diff) | |
| parent | ARM: dts: Fix file permission for am335x-osd3358-sm-red.dts (diff) | |
| download | wireguard-linux-ea4d65f14f6aaa53e379b93c5544245ef081b3e7.tar.xz wireguard-linux-ea4d65f14f6aaa53e379b93c5544245ef081b3e7.zip  | |
Merge branch 'perm-fix' into omap-for-v4.19/fixes-v2
Diffstat (limited to '')
| -rw-r--r-- | kernel/watchdog_hld.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/watchdog_hld.c b/kernel/watchdog_hld.c index e449a23e9d59..1f7020d65d0a 100644 --- a/kernel/watchdog_hld.c +++ b/kernel/watchdog_hld.c @@ -175,8 +175,8 @@ static int hardlockup_detector_event_create(void)  	evt = perf_event_create_kernel_counter(wd_attr, cpu, NULL,  					       watchdog_overflow_callback, NULL);  	if (IS_ERR(evt)) { -		pr_info("Perf event create on CPU %d failed with %ld\n", cpu, -			PTR_ERR(evt)); +		pr_debug("Perf event create on CPU %d failed with %ld\n", cpu, +			 PTR_ERR(evt));  		return PTR_ERR(evt);  	}  	this_cpu_write(watchdog_ev, evt);  | 
