]> Pileus Git - ~andy/linux/commitdiff
[media] davinci: vpif: Fix module build for capture and display
authorLad, Prabhakar <prabhakar.csengg@gmail.com>
Wed, 20 Mar 2013 04:28:27 +0000 (01:28 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 23 Mar 2013 13:38:10 +0000 (10:38 -0300)
export the symbols which are used by two modules vpif_capture and
vpif_display. renamed "ch_params" to "vpif_ch_params" so as to avoid
name collision.
This patch fixes following error:
ERROR: "ch_params" [drivers/media/platform/davinci/vpif_display.ko] undefined!
ERROR: "vpif_ch_params_count" [drivers/media/platform/davinci/vpif_display.ko] undefined!
ERROR: "vpif_base" [drivers/media/platform/davinci/vpif_display.ko] undefined!
ERROR: "ch_params" [drivers/media/platform/davinci/vpif_capture.ko] undefined!
ERROR: "vpif_ch_params_count" [drivers/media/platform/davinci/vpif_capture.ko] undefined!
ERROR: "vpif_base" [drivers/media/platform/davinci/vpif_capture.ko] undefined!
make[1]: *** [__modpost] Error 1

Reported-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/davinci/vpif.c
drivers/media/platform/davinci/vpif.h
drivers/media/platform/davinci/vpif_capture.c
drivers/media/platform/davinci/vpif_display.c

index 28638a86f12964c9ab81e3d5bd99d9ba495429a7..3bc4db8f0f27ebaa2dfdeb48d63ac6e29c66fb1d 100644 (file)
@@ -44,13 +44,15 @@ static struct resource      *res;
 spinlock_t vpif_lock;
 
 void __iomem *vpif_base;
+EXPORT_SYMBOL_GPL(vpif_base);
+
 struct clk *vpif_clk;
 
 /**
- * ch_params: video standard configuration parameters for vpif
+ * vpif_ch_params: video standard configuration parameters for vpif
  * The table must include all presets from supported subdevices.
  */
-const struct vpif_channel_config_params ch_params[] = {
+const struct vpif_channel_config_params vpif_ch_params[] = {
        /* HDTV formats */
        {
                .name = "480p59_94",
@@ -220,8 +222,10 @@ const struct vpif_channel_config_params ch_params[] = {
                .stdid = V4L2_STD_625_50,
        },
 };
+EXPORT_SYMBOL_GPL(vpif_ch_params);
 
-const unsigned int vpif_ch_params_count = ARRAY_SIZE(ch_params);
+const unsigned int vpif_ch_params_count = ARRAY_SIZE(vpif_ch_params);
+EXPORT_SYMBOL_GPL(vpif_ch_params_count);
 
 static inline void vpif_wr_bit(u32 reg, u32 bit, u32 val)
 {
index a1ab6a0f4e9e53406d2fb91027b0479f63a35767..9956e6788693dde19869594660a76c5b851711b7 100644 (file)
@@ -638,7 +638,7 @@ struct vpif_channel_config_params {
 };
 
 extern const unsigned int vpif_ch_params_count;
-extern const struct vpif_channel_config_params ch_params[];
+extern const struct vpif_channel_config_params vpif_ch_params[];
 
 struct vpif_video_params;
 struct vpif_params;
index 1943e41f386628f5c8772c3b320c72e3d1fa5e7e..d869c8e868eec58761b08b52e8055486ece6275e 100644 (file)
@@ -563,7 +563,7 @@ static int vpif_update_std_info(struct channel_obj *ch)
        vpif_dbg(2, debug, "vpif_update_std_info\n");
 
        for (index = 0; index < vpif_ch_params_count; index++) {
-               config = &ch_params[index];
+               config = &vpif_ch_params[index];
                if (config->hd_sd == 0) {
                        vpif_dbg(2, debug, "SD format\n");
                        if (config->stdid & vid_ch->stdid) {
index 5477c2cb8653c199a893f35850f0ba618ae6f651..3bb187c9402bc448422b0c2a1353da306f206ae8 100644 (file)
@@ -511,7 +511,7 @@ static int vpif_update_std_info(struct channel_obj *ch)
        int i;
 
        for (i = 0; i < vpif_ch_params_count; i++) {
-               config = &ch_params[i];
+               config = &vpif_ch_params[i];
                if (config->hd_sd == 0) {
                        vpif_dbg(2, debug, "SD format\n");
                        if (config->stdid & vid_ch->stdid) {