Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320005
b: refs/heads/master
c: 7e566be
h: refs/heads/master
i:
  320003: 7857efa
v: v3
  • Loading branch information
Sachin Kamat authored and Mauro Carvalho Chehab committed Jun 18, 2012
1 parent f6fd96c commit ee45a88
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 50fbe32cf41a8309ed8016eb6f81232acfa23ae7
refs/heads/master: 7e566be25895e55aaea4dd0c453f2a3b6919cfb6
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/s5p-fimc/fimc-capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ static int fimc_cap_g_selection(struct file *file, void *fh,
}

/* Return 1 if rectangle a is enclosed in rectangle b, or 0 otherwise. */
int enclosed_rectangle(struct v4l2_rect *a, struct v4l2_rect *b)
static int enclosed_rectangle(struct v4l2_rect *a, struct v4l2_rect *b)
{
if (a->left < b->left || a->top < b->top)
return 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/s5p-fimc/fimc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ void fimc_prepare_dma_offset(struct fimc_ctx *ctx, struct fimc_frame *f)
f->fmt->color, f->dma_offset.y_h, f->dma_offset.y_v);
}

int fimc_set_color_effect(struct fimc_ctx *ctx, enum v4l2_colorfx colorfx)
static int fimc_set_color_effect(struct fimc_ctx *ctx, enum v4l2_colorfx colorfx)
{
struct fimc_effect *effect = &ctx->effect;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/video/s5p-fimc/fimc-lite-reg.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void flite_hw_set_camera_bus(struct fimc_lite *dev,
flite_hw_set_camera_port(dev, s_info->mux_id);
}

void flite_hw_set_out_order(struct fimc_lite *dev, struct flite_frame *f)
static void flite_hw_set_out_order(struct fimc_lite *dev, struct flite_frame *f)
{
static const u32 pixcode[4][2] = {
{ V4L2_MBUS_FMT_YUYV8_2X8, FLITE_REG_CIODMAFMT_YCBYCR },
Expand Down
7 changes: 4 additions & 3 deletions trunk/drivers/media/video/s5p-fimc/fimc-mdevice.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ EXPORT_SYMBOL_GPL(fimc_pipeline_initialize);
* sensor clock.
* Called with the graph mutex held.
*/
int __fimc_pipeline_shutdown(struct fimc_pipeline *p)
static int __fimc_pipeline_shutdown(struct fimc_pipeline *p)
{
int ret = 0;

Expand Down Expand Up @@ -1010,7 +1010,7 @@ static struct platform_driver fimc_md_driver = {
}
};

int __init fimc_md_init(void)
static int __init fimc_md_init(void)
{
int ret;

Expand All @@ -1021,7 +1021,8 @@ int __init fimc_md_init(void)

return platform_driver_register(&fimc_md_driver);
}
void __exit fimc_md_exit(void)

static void __exit fimc_md_exit(void)
{
platform_driver_unregister(&fimc_md_driver);
fimc_unregister_driver();
Expand Down

0 comments on commit ee45a88

Please sign in to comment.