blob: 298d5c1c448c98c7f6c629e5fefddbaffcfc72a6 [file] [log] [blame]
#include <app-common/zap-generated/callback.h>
using namespace chip;
{%- for name in clusters | sort(attribute='name') | map(attribute='name') | unique %}
void __attribute__((weak)) emberAf{{name}}ClusterInitCallback(EndpointId endpoint)
{
// To prevent warning
(void) endpoint;
}
{%- endfor %}