Skip to content

Commit

Permalink
ARM: SAMSUNG: Silence empty switch warning in fimc-core.h
Browse files Browse the repository at this point in the history
Add 'default' case to silence the below warning:
arch/arm/plat-samsung/include/plat/fimc-core.h:25:9:
warning: switch with no cases

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Sachin Kamat authored and Kukjin Kim committed Feb 12, 2013
1 parent 8d67ec8 commit 12ebb8f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/arm/plat-samsung/include/plat/fimc-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ static inline void s3c_fimc_setname(int id, char *name)
s5p_device_fimc3.name = name;
break;
#endif
default:
break;
}
}

Expand Down

0 comments on commit 12ebb8f

Please sign in to comment.