net: nps_enet: Fix function names in doc comments

Adjust the function names in two doc comments to match the corresponding
functions.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jonathan Neuschäfer 2019-08-10 13:11:56 +02:00 committed by David S. Miller
parent 68553f1a6f
commit d81f41411c
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ struct nps_enet_priv {
};
/**
* nps_reg_set - Sets ENET register with provided value.
* nps_enet_reg_set - Sets ENET register with provided value.
* @priv: Pointer to EZchip ENET private data structure.
* @reg: Register offset from base address.
* @value: Value to set in register.
@ -179,7 +179,7 @@ static inline void nps_enet_reg_set(struct nps_enet_priv *priv,
}
/**
* nps_reg_get - Gets value of specified ENET register.
* nps_enet_reg_get - Gets value of specified ENET register.
* @priv: Pointer to EZchip ENET private data structure.
* @reg: Register offset from base address.
*