diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-06 04:30:22 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-06 04:30:22 -0500 |
commit | 0eeb232f5aadc2e258e3963aeacaf405ca842e78 (patch) | |
tree | 35cfac2ff4fb50905bc7f54da86db925942c5935 /drivers/media/usb/em28xx/em28xx-cards.c | |
parent | be7fd3c3a8c5e9acbc69f887ca961df5e68cf6f0 (diff) |
media: em28xx: constify a new function
em28xx_duplicate_dev() is static. This were supposed to be
merged on the last patch, but somehow, I forgot "-a" when
I called git commit --amend.
Fixes: be7fd3c3a8c5 ("media: em28xx: Hauppauge DualHD second tuner functionality")
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/em28xx/em28xx-cards.c')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-cards.c b/drivers/media/usb/em28xx/em28xx-cards.c index 7f5d0b28cb8c..fb42f75a3406 100644 --- a/drivers/media/usb/em28xx/em28xx-cards.c +++ b/drivers/media/usb/em28xx/em28xx-cards.c @@ -3435,7 +3435,7 @@ static int em28xx_init_dev(struct em28xx *dev, struct usb_device *udev, return 0; } -int em28xx_duplicate_dev(struct em28xx *dev) +static int em28xx_duplicate_dev(struct em28xx *dev) { int nr; struct em28xx *sec_dev = kzalloc(sizeof(*sec_dev), GFP_KERNEL); |