Support the reset button type.

This commit is contained in:
thorpej 2003-04-20 20:53:04 +00:00
parent 9884510327
commit b9ea11721d
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: powerd.c,v 1.1 2003/04/18 04:54:50 thorpej Exp $ */
/* $NetBSD: powerd.c,v 1.2 2003/04/20 20:53:04 thorpej Exp $ */
/*
* Copyright (c) 2003 Wasabi Systems, Inc.
@ -253,6 +253,9 @@ pswitch_type_name(int type)
case PSWITCH_TYPE_LID:
return ("lid_switch");
case PSWITCH_TYPE_RESET:
return ("reset_button");
default:
return ("=unknown pswitch type=");
}