mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 11:48:58 -04:00
staging: bcm2835-camera: Fix module section mismatch warnings.
Noticed by Stephen Rothwell in -next.
Signed-off-by: Eric Anholt <eric@anholt.net>
Fixes: 4bebb0312e ("staging/bcm2835-camera: Set ourselves up as a platform driver.")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
21f4bb8756
commit
4f566194ce
@@ -1548,7 +1548,7 @@ static int set_camera_parameters(struct vchiq_mmal_instance *instance,
|
||||
#define MAX_SUPPORTED_ENCODINGS 20
|
||||
|
||||
/* MMAL instance and component init */
|
||||
static int __init mmal_init(struct bm2835_mmal_dev *dev)
|
||||
static int mmal_init(struct bm2835_mmal_dev *dev)
|
||||
{
|
||||
int ret;
|
||||
struct mmal_es_format_local *format;
|
||||
@@ -1756,8 +1756,8 @@ static int __init mmal_init(struct bm2835_mmal_dev *dev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int __init bm2835_mmal_init_device(struct bm2835_mmal_dev *dev,
|
||||
struct video_device *vfd)
|
||||
static int bm2835_mmal_init_device(struct bm2835_mmal_dev *dev,
|
||||
struct video_device *vfd)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@@ -1836,7 +1836,7 @@ static struct v4l2_format default_v4l2_format = {
|
||||
.fmt.pix.sizeimage = 1024 * 768,
|
||||
};
|
||||
|
||||
static int __init bcm2835_mmal_probe(struct platform_device *pdev)
|
||||
static int bcm2835_mmal_probe(struct platform_device *pdev)
|
||||
{
|
||||
int ret;
|
||||
struct bm2835_mmal_dev *dev;
|
||||
|
||||
Reference in New Issue
Block a user