diff options
author | 2020-08-25 11:01:46 +0100 | |
---|---|---|
committer | 2020-08-25 11:01:46 +0100 | |
commit | 3bec5b6aae830355e786e204b20a7cea38c3a8ed (patch) | |
tree | fd597b87faf55ceb2a207ee94f4feca6276696db /include/linux/mpi.h | |
parent | regulator: remove superfluous lock in regulator_resolve_coupling() (diff) | |
parent | Linux 5.9-rc2 (diff) | |
download | wireguard-linux-3bec5b6aae830355e786e204b20a7cea38c3a8ed.tar.xz wireguard-linux-3bec5b6aae830355e786e204b20a7cea38c3a8ed.zip |
Merge tag 'v5.9-rc2' into regulator-5.9
Linux 5.9-rc2
Diffstat (limited to 'include/linux/mpi.h')
-rw-r--r-- | include/linux/mpi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mpi.h b/include/linux/mpi.h index 7bd6d8af0004..5d906dfbf3ed 100644 --- a/include/linux/mpi.h +++ b/include/linux/mpi.h @@ -63,6 +63,9 @@ int mpi_powm(MPI res, MPI base, MPI exp, MPI mod); int mpi_cmp_ui(MPI u, ulong v); int mpi_cmp(MPI u, MPI v); +/*-- mpi-sub-ui.c --*/ +int mpi_sub_ui(MPI w, MPI u, unsigned long vval); + /*-- mpi-bit.c --*/ void mpi_normalize(MPI a); unsigned mpi_get_nbits(MPI a); |