Fix typo on "Celsius"

"Celcius" --> "Celsius"

Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Pull Request: https://github.com/freebsd/freebsd-src/pull/551/files
This commit is contained in:
Elyes HAOUAS 2021-10-06 17:32:15 +02:00 committed by Warner Losh
parent 872d50a5d8
commit 9097ac9af4
8 changed files with 17 additions and 17 deletions

View File

@ -80,7 +80,7 @@ humidity measurements.
The current temperature in integer deciKelvins.
Note that
.Xr sysctl 8
will convert those units to display in decimal degrees Celcius.
will convert those units to display in decimal degrees Celsius.
.It Va dev.gpioths.<unit>.hum
The current relative humidity, as an integer percentage.
.It Va dev.gpioths.<unit>.fails

View File

@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$");
* Note that temperature values throughout this code are handled in two types of
* units. Items with '_cnt' in the name use the hardware temperature count
* units (higher counts are lower temperatures). Items with '_val' in the name
* are deci-Celcius, which are converted to/from deci-Kelvins in the sysctl
* are deci-Celsius, which are converted to/from deci-Kelvins in the sysctl
* handlers (dK is the standard unit for temperature in sysctl).
*/
@ -140,7 +140,7 @@ static struct oppt {
*/
static uint32_t imx6_ocotp_mhz_tab[] = {792, 852, 996, 1200};
#define TZ_ZEROC 2731 /* deci-Kelvin <-> deci-Celcius offset. */
#define TZ_ZEROC 2731 /* deci-Kelvin <-> deci-Celsius offset. */
uint32_t
imx6_anatop_read_4(bus_size_t offset)

View File

@ -1185,12 +1185,12 @@ struct shm_dev_info { /* size */
struct extended_dev_info_shared_cfg { /* NVRAM OFFSET */
/* Threshold in celcius to start using the fan */
/* Threshold in celsius to start using the fan */
uint32_t temperature_monitor1; /* 0x4000 */
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_FAN_THRESH_MASK 0x0000007F
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_FAN_THRESH_SHIFT 0
/* Threshold in celcius to shut down the board */
/* Threshold in celsius to shut down the board */
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_SHUT_THRESH_MASK 0x00007F00
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_SHUT_THRESH_SHIFT 8
@ -1366,12 +1366,12 @@ struct extended_dev_info_shared_cfg { /* NVRAM OFFSET */
#define EXTENDED_DEV_INFO_SHARED_CFG_REV_ID_CTRL_ACTUAL 0x00001000
#define EXTENDED_DEV_INFO_SHARED_CFG_REV_ID_CTRL_FORCE_B0 0x00002000
#define EXTENDED_DEV_INFO_SHARED_CFG_REV_ID_CTRL_FORCE_B1 0x00003000
/* Threshold in celcius for max continuous operation */
/* Threshold in celsius for max continuous operation */
uint32_t temperature_report; /* 0x4014 */
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_MCOT_MASK 0x0000007F
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_MCOT_SHIFT 0
/* Threshold in celcius for sensor caution */
/* Threshold in celsius for sensor caution */
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_SCT_MASK 0x00007F00
#define EXTENDED_DEV_INFO_SHARED_CFG_TEMP_SCT_SHIFT 8

View File

@ -79,7 +79,7 @@ enum {
} while (0)
/*
* Return value is temperature in celcius, 0xffff for error or don't know.
* Return value is temperature in celsius, 0xffff for error or don't know.
*/
static int
aq100x_temperature(struct cphy *phy)

View File

@ -872,7 +872,7 @@ mlx5e_hw_temperature_update(struct mlx5e_priv *priv)
MLX5_ACCESS_REG_SUMMARY_CTRL_ID_MTMP, 0, 0);
if (err)
goto done;
/* convert from 0.125 celcius to millicelcius */
/* convert from 0.125 celsius to millicelsius */
priv->params_ethtool.hw_val_temp[x] =
(s16)MLX5_GET(mtmp_reg, out_sensor, temperature) * 125;
}
@ -1639,6 +1639,6 @@ mlx5e_create_ethtool(struct mlx5e_priv *priv)
OID_AUTO, "hw_temperature",
CTLTYPE_S32 | CTLFLAG_RD | CTLFLAG_MPSAFE,
priv, 0, mlx5e_hw_temperature_handler, "I",
"HW temperature in millicelcius");
"HW temperature in millicelsius");
}
}

View File

@ -513,7 +513,7 @@ struct public_global {
u32 debug_mb_offset;
u32 phymod_dbg_mb_offset;
struct couple_mode_teaming cmt;
s32 internal_temperature; /* Temperature in Celcius (-255C / +255C), measured every second. */
s32 internal_temperature; /* Temperature in Celsius (-255C / +255C), measured every second. */
u32 mfw_ver;
u32 running_bundle_id;
s32 external_temperature;

View File

@ -250,7 +250,7 @@ ugold_attach(device_t dev)
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),
OID_AUTO, "inner", CTLFLAG_RD, &sc->sc_sensor[UGOLD_INNER], 0,
"Inner temperature in microCelcius");
"Inner temperature in microCelsius");
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),
@ -260,17 +260,17 @@ ugold_attach(device_t dev)
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),
OID_AUTO, "inner_calib", CTLFLAG_RWTUN, &sc->sc_calib[UGOLD_INNER], 0,
"Inner calibration temperature in microCelcius");
"Inner calibration temperature in microCelsius");
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),
OID_AUTO, "outer", CTLFLAG_RD, &sc->sc_sensor[UGOLD_OUTER], 0,
"Outer temperature in microCelcius");
"Outer temperature in microCelsius");
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),
OID_AUTO, "outer_calib", CTLFLAG_RWTUN, &sc->sc_calib[UGOLD_OUTER], 0,
"Outer calibration temperature in microCelcius");
"Outer calibration temperature in microCelsius");
SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(sensor_tree),

View File

@ -300,7 +300,7 @@ oid_get_value(const struct oid *o, const struct oidformat *of,
return (false);
}
/* Convert temperatures from decikelvin to degrees Celcius. */
/* Convert temperatures from decikelvin to degrees Celsius. */
if (oidformat_is_temperature(of)) {
double v;
int e;
@ -403,7 +403,7 @@ oid_get_metric(const struct oidname *on, const struct oidformat *of,
label += strlen(label) + 1;
}
if (oidformat_is_temperature(of))
strlcat(metric, "_celcius", mlen);
strlcat(metric, "_celsius", mlen);
else if (oidformat_is_timeval(of))
strlcat(metric, "_seconds", mlen);