X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=blobdiff_plain;f=src%2Flib%2Famd.h;h=682f8ebfbc6ea9f9bec482f29be9f252fcf53308;hp=78e6c4621d8bb225cf078552a239dae5ec61cc0c;hb=c1e20f2631a1249720e9c75d753eacfcb0f6c7b9;hpb=c6d9fd757f429c0889e1a7620c7e7be69e6f71c9 diff --git a/src/lib/amd.h b/src/lib/amd.h index 78e6c46..682f8eb 100644 --- a/src/lib/amd.h +++ b/src/lib/amd.h @@ -1,41 +1,44 @@ /* - Copyright (C) 2010-2011 thgreasi@gmail.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + * Copyright (C) 2010-2011 thgreasi@gmail.com, jeanfi@gmail.com + * Copyright (C) 2012-2016 jeanfi@gmail.com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ +#ifndef _PSENSOR_AMD_H_ +#define _PSENSOR_AMD_H_ - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. +#include +#include - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ +#if defined(HAVE_LIBATIADL) && HAVE_LIBATIADL -#ifndef _PSENSOR_AMD_H_ -#define _PSENSOR_AMD_H_ +static inline bool amd_is_supported(void) { return true; } -#include "psensor.h" +void amd_psensor_list_update(struct psensor **s); +void amd_psensor_list_append(struct psensor ***s, int n); +void amd_cleanup(void); -/* - Updates temperatures of AMD sensors. -*/ -void amd_psensor_list_update(struct psensor **sensors); +#else -/* - Adds AMD sensors to a given list of sensors. +static inline bool amd_is_supported(void) { return false; } - Returns the new allocated list of sensors if sensors have been added - otherwise returns 'sensors'. The list is 'NULL' terminated. - */ -struct psensor **amd_psensor_list_add(struct psensor **sensors, - int values_max_length); +static inline void amd_psensor_list_update(struct psensor **s) {} +static inline void amd_psensor_list_append(struct psensor ***s, int n) {} +static inline void amd_cleanup(void) {} -void amd_cleanup(); +#endif #endif