[media] staging: media: atomisp: fix non static symbol warnings
Fix a couple of sparse warnings: drivers/staging/media/atomisp/pci/atomisp2/atomisp_v4l2.c:59:14: warning: symbol 'repool_pgnr' was not declared. Should it be static? drivers/staging/media/atomisp/pci/atomisp2/atomisp_v4l2.c:387:6: warning: symbol 'punit_ddr_dvfs_enable' was not declared. Should it be static? Mark these symbols as static, so they are no longer incorrectly exported. Signed-off-by: Juan Antonio Pedreira Martos <juanpm1@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
e1b28f1326
commit
4518c3fe7c
@ -56,7 +56,7 @@ module_param(skip_fwload, uint, 0644);
|
||||
MODULE_PARM_DESC(skip_fwload, "Skip atomisp firmware load");
|
||||
|
||||
/* set reserved memory pool size in page */
|
||||
unsigned int repool_pgnr;
|
||||
static unsigned int repool_pgnr;
|
||||
module_param(repool_pgnr, uint, 0644);
|
||||
MODULE_PARM_DESC(repool_pgnr,
|
||||
"Set the reserved memory pool size in page (default:0)");
|
||||
@ -384,7 +384,7 @@ done:
|
||||
* WA for DDR DVFS enable/disable
|
||||
* By default, ISP will force DDR DVFS 1600MHz before disable DVFS
|
||||
*/
|
||||
void punit_ddr_dvfs_enable(bool enable)
|
||||
static void punit_ddr_dvfs_enable(bool enable)
|
||||
{
|
||||
int reg = intel_mid_msgbus_read32(PUNIT_PORT, MRFLD_ISPSSDVFS);
|
||||
int door_bell = 1 << 8;
|
||||
|
Loading…
x
Reference in New Issue
Block a user