Unverified Commit 09c0533d authored by Palmer Dabbelt's avatar Palmer Dabbelt
Browse files

soc: sifive: l2 cache: Mark l2_get_priv_group as static



The kbuild test robot is firing a warning over a missing prototype.  The
function can just be static.

Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarPalmer Dabbelt <palmerdabbelt@google.com>
parent b4a4f036
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ static const struct attribute_group priv_attr_group = {
	.attrs = priv_attrs,
};

const struct attribute_group *l2_get_priv_group(struct cacheinfo *this_leaf)
static const struct attribute_group *l2_get_priv_group(struct cacheinfo *this_leaf)
{
	/* We want to use private group for L2 cache only */
	if (this_leaf->level == 2)