diff options
author | Lee Jones <lee.jones@linaro.org> | 2021-03-12 11:02:37 +0000 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2021-03-15 08:22:23 +0100 |
commit | 6562e2cb8c7fa2f4982cdb28a2740a3bb7ec2c43 (patch) | |
tree | bc53fd0a1a86668de427ee1b4b8c171111e1841d | |
parent | f4468bbbe25eae0839aeada937c4ac8d9a5086d9 (diff) |
pcmcia: ds: Fix function name disparity in header
Fixes the following W=1 kernel build warning(s):
drivers/pcmcia/ds.c:96: warning: expecting prototype for pcmcia_store_new_id(). Prototype was for new_id_store() instead
Signed-off-by: Lee Jones <lee.jones@linaro.org>
[linux@dominikbrodowski.net: removed list of CCs]
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
-rw-r--r-- | drivers/pcmcia/ds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 6ecb64140f37..bd81aa64d011 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c @@ -83,7 +83,7 @@ struct pcmcia_dynid { }; /** - * pcmcia_store_new_id - add a new PCMCIA device ID to this driver and re-probe devices + * new_id_store() - add a new PCMCIA device ID to this driver and re-probe devices * @driver: target device driver * @buf: buffer for scanning device ID data * @count: input size |