X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fiface-pwrstat.c;h=a823946e5a835e05b721cf85de698e82c2818f1e;hb=77472ac6e4de7f87a8d8b8c9a554e1fcb05206a5;hp=2ae1f549bdc94592e467a1193b3cebc4183ad4b3;hpb=ec75bbb093fa99a4be794f0f564867c0091ccb85;p=palacios.git diff --git a/linux_module/iface-pwrstat.c b/linux_module/iface-pwrstat.c index 2ae1f54..a823946 100644 --- a/linux_module/iface-pwrstat.c +++ b/linux_module/iface-pwrstat.c @@ -303,12 +303,18 @@ static int pwrstat_init (void) return 0; } -/* if AMD comes up with something it can go here */ + +static int pwrstat_deinit(void) +{ + // nothing to do + return 0; +} + static struct linux_ext pwrstat_ext = { .name = "POWERSTAT", .init = pwrstat_init, - .deinit = NULL, + .deinit = pwrstat_deinit, .guest_init = NULL, .guest_deinit = NULL };