https://github.com/torvalds/linux
Raw File
Tip revision: 418baf2c28f3473039f2f7377760bd8f6897ae18 authored by Linus Torvalds on 22 November 2020, 23:36:08 UTC
Linux 5.10-rc5
Tip revision: 418baf2
tosa_bt.h
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Tosa bluetooth built-in chip control.
 *
 * Later it may be shared with some other platforms.
 *
 * Copyright (c) 2008 Dmitry Baryshkov
 */
#ifndef TOSA_BT_H
#define TOSA_BT_H

struct tosa_bt_data {
	int gpio_pwr;
	int gpio_reset;
};

#endif

back to top