pi5-pio-protomatter/piolib/include/piolib_priv.h
2024-12-12 13:55:19 -06:00

16 lines
389 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2023-24 Raspberry Pi Ltd.
* All rights reserved.
*/
#ifndef _PIOLIB_PRIV_H
#define _PIOLIB_PRIV_H
#include "pio_platform.h"
#define DECLARE_PIO_CHIP(chip) \
const PIO_CHIP_T *__ptr_##chip __attribute__((section("piochips"))) \
__attribute__((used)) = &chip
#endif