instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'include/linux/input/touchscreen' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2014 Sebastian Reichel <sre@kernel.org> */ #ifndef _TOUCHSCREEN_H #define _TOUCHSCREEN_H struct input_dev; struct input_mt_pos; struct touchscreen_properties { unsigned int max_x; unsigned int max_y; bool invert_x; bool invert_y; bool swap_x_...
Linux işletim sistemi çekirdeği için 'include/linux/input/elan-i2c-ids' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Elan I2C/SMBus Touchpad device whitelist * * Copyright (c) 2013 ELAN Microelectronics Corp. * * Author: æ維 (Duson Lin) <dusonlin@emc.com.tw> * Author: KT Liao <kt.liao@emc.com.tw> * Version: 1.6.3 * * Based on cyapa driver: * copyright (c) 2011-2012 Cypres...
Linux işletim sistemi çekirdeği için 'include/linux/input/cma3000' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * VTI CMA3000_Dxx Accelerometer driver * * Copyright (C) 2010 Texas Instruments * Author: Hemanth V <hemanthv@ti.com> */ #ifndef _LINUX_CMA3000_H #define _LINUX_CMA3000_H #define CMAMODE_DEFAULT 0 #define CMAMODE_MEAS100 1 #define CMAMODE_MEAS400 2 #de...
Linux işletim sistemi çekirdeği için 'include/linux/input/mt' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef _INPUT_MT_H #define _INPUT_MT_H /* * Input Multitouch Library * * Copyright (c) 2010 Henrik Rydberg */ #include <linux/input.h> #define TRKID_MAX 0xffff #define INPUT_MT_POINTER 0x0001 /* pointer device, e.g. trackpad */ #define INPUT_MT_DIRECT 0x0002 /*...
Linux işletim sistemi çekirdeği için 'include/linux/input/lm8333' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * public include for LM8333 keypad driver - same license as driver * Copyright (C) 2012 Wolfram Sang, Pengutronix <kernel@pengutronix.de> */ #ifndef _LM8333_H #define _LM8333_H struct lm8333; struct lm8333_platform_data { /* Keymap data */ const struct matrix_keymap_data *matrix_data; /* Active timeout...
Linux işletim sistemi çekirdeği için 'include/linux/input/vivaldi-fmap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _VIVALDI_FMAP_H #define _VIVALDI_FMAP_H #include <linux/types.h> #define VIVALDI_MAX_FUNCTION_ROW_KEYS 24 /** * struct vivaldi_data - Function row map data for ChromeOS Vivaldi keyboards * @function_row_physmap: An array of scancodes or their equivalent (HID usag...
Linux işletim sistemi çekirdeği için 'include/linux/input/kxtj9' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2011 Kionix, Inc. * Written by Chris Hudson <chudson@kionix.com> */ #ifndef __KXTJ9_H__ #define __KXTJ9_H__ #define KXTJ9_I2C_ADDR 0x0F struct kxtj9_platform_data { unsigned int min_interval; /* minimum poll interval (in milli-seconds) */ unsi...
Linux işletim sistemi çekirdeği için 'include/linux/input/sh_keysc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __SH_KEYSC_H__ #define __SH_KEYSC_H__ #define SH_KEYSC_MAXKEYS 64 struct sh_keysc_info { enum { SH_KEYSC_MODE_1, SH_KEYSC_MODE_2, SH_KEYSC_MODE_3, SH_KEYSC_MODE_4, SH_KEYSC_MODE_5, SH_KEYSC_MODE_6 } mode; int scan_timing; /* 0 -> 7, see KYCR1, SCN[2:0] */ ...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/mtk-cmdq-mailbox' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2018 MediaTek Inc. * */ #ifndef __MTK_CMDQ_MAILBOX_H__ #define __MTK_CMDQ_MAILBOX_H__ #include <linux/platform_device.h> #include <linux/slab.h> #include <linux/types.h> #define CMDQ_INST_SIZE 8 /* instruction is 64-bit */ #define CMDQ_SUBSYS_SHIFT ...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/zynqmp-ipi-message' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_ZYNQMP_IPI_MESSAGE_H_ #define _LINUX_ZYNQMP_IPI_MESSAGE_H_ /** * struct zynqmp_ipi_message - ZynqMP IPI message structure * @len: Length of message * @data: message payload * * This is the structure for data used in mbox_send_message * the maximum leng...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/exynos-message' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Exynos mailbox message. * * Copyright 2024 Linaro Ltd. */ #ifndef _LINUX_EXYNOS_MESSAGE_H_ #define _LINUX_EXYNOS_MESSAGE_H_ #define EXYNOS_MBOX_CHAN_TYPE_DOORBELL 0 #define EXYNOS_MBOX_CHAN_TYPE_DATA 1 struct exynos_mbox_msg { unsigned int chan_id; unsign...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/mtk-vcp-mailbox' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ /* * Copyright (c) 2025 MediaTek Inc. */ #ifndef __MTK_VCP_MAILBOX_H__ #define __MTK_VCP_MAILBOX_H__ #define MTK_VCP_MBOX_SLOT_MAX_SIZE 0x100 /* mbox max slot size */ /** * struct mtk_ipi_info - mailbox message info for mtk-vcp-mailbox * @msg: The share buffer...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/riscv-rpmi-message' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright (C) 2025 Ventana Micro Systems Inc. */ #ifndef _LINUX_RISCV_RPMI_MESSAGE_H_ #define _LINUX_RISCV_RPMI_MESSAGE_H_ #include <linux/errno.h> #include <linux/mailbox_client.h> #include <linux/types.h> #include <linux/wordpart.h> /* RPMI version encode/decode ...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/arm_mhuv2_message' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * ARM MHUv2 Mailbox Message * * Copyright (C) 2020 Arm Ltd. * Copyright (C) 2020 Linaro Ltd. */ #ifndef _LINUX_ARM_MHUV2_MESSAGE_H_ #define _LINUX_ARM_MHUV2_MESSAGE_H_ #include <linux/types.h> /* Data structure for data-transfer protocol */ struct arm_mhuv2_mbox_msg {...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/mchp-ipc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* *Copyright (c) 2024 Microchip Technology Inc. All rights reserved. */ #ifndef _LINUX_MCHP_IPC_H_ #define _LINUX_MCHP_IPC_H_ #include <linux/mailbox_controller.h> #include <linux/types.h> struct mchp_ipc_msg { u32 *buf; u16 size; }; struct mchp_ipc_sbi_chan { void ...
Linux işletim sistemi çekirdeği için 'include/linux/mailbox/brcm-message' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2016 Broadcom * * Common header for Broadcom mailbox messages which is shared across * Broadcom SoCs and Broadcom mailbox client drivers. */ #ifndef _LINUX_BRCM_MESSAGE_H_ #define _LINUX_BRCM_MESSAGE_H_ #include <linux/scatterlist.h> enum brcm...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/brcm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only * Copyright (C) 2014 Broadcom Corporation */ /* Included by drivers/net/ethernet/broadcom/bcmsysport.c and * net/dsa/tag_brcm.c */ #ifndef _NET_DSA_BRCM_H #define _NET_DSA_BRCM_H /* Broadcom tag specific helpers to insert and extract queue/port number */ #define BRCM_...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/tag_qca' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TAG_QCA_H #define __TAG_QCA_H #include <linux/types.h> struct dsa_switch; struct sk_buff; #define QCA_HDR_LEN 2 #define QCA_HDR_VERSION 0x2 #define QCA_HDR_RECV_VERSION GENMASK(15, 14) #define QCA_HDR_RECV_PRIORITY GENMASK(13, 11) #define QCA_HDR_RECV_TYPE G...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/ksz_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Microchip switch tag common header * * Copyright (C) 2022 Microchip Technology Inc. */ #ifndef _NET_DSA_KSZ_COMMON_H_ #define _NET_DSA_KSZ_COMMON_H_ #include <net/dsa.h> /* All time stamps from the KSZ consist of 2 bits for seconds and 30 bits for * nanoseconds. Thi...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/ocelot' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 * Copyright 2019-2021 NXP */ #ifndef _NET_DSA_TAG_OCELOT_H #define _NET_DSA_TAG_OCELOT_H #include <linux/if_bridge.h> #include <linux/if_vlan.h> #include <linux/kthread.h> #include <linux/packing.h> #include <linux/skbuff.h> #include <net/dsa.h> struct ocelot_skb_cb { stru...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/sja1105' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 * Copyright (c) 2019, Vladimir Oltean <olteanv@gmail.com> */ /* Included by drivers/net/dsa/sja1105/sja1105.h and net/dsa/tag_sja1105.c */ #ifndef _NET_DSA_SJA1105_H #define _NET_DSA_SJA1105_H #include <linux/skbuff.h> #include <linux/etherdevice.h> #include <linux/dsa/8021...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/8021q' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 * Copyright (c) 2019, Vladimir Oltean <olteanv@gmail.com> */ #ifndef _NET_DSA_8021Q_H #define _NET_DSA_8021Q_H #include <net/dsa.h> #include <linux/types.h> /* VBID is limited to three bits only and zero is reserved. * Only 7 bridges can be enumerated. */ #define DSA_TAG_...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/lan9303' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* Included by drivers/net/dsa/lan9303.h and net/dsa/tag_lan9303.c */ #include <linux/if_ether.h> struct lan9303; struct lan9303_phy_ops { /* PHY 1 and 2 access*/ int (*phy_read)(struct lan9303 *chip, int addr, int regnum); int (*phy_write)(struct lan9303 *chip, int addr, int regnum, u16 val); }; #de...
Linux işletim sistemi çekirdeği için 'include/linux/dsa/mv88e6xxx' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 * Copyright 2021 NXP */ #ifndef _NET_DSA_TAG_MV88E6XXX_H #define _NET_DSA_TAG_MV88E6XXX_H #include <linux/if_vlan.h> #define MV88E6XXX_VID_STANDALONE 0 #define MV88E6XXX_VID_BRIDGED (VLAN_N_VID - 1) #endif ```
Linux işletim sistemi çekirdeği için 'include/linux/spi/libertas_spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * board-specific data for the libertas_spi driver. * * Copyright 2008 Analog Devices Inc. */ #ifndef _LIBERTAS_SPI_H_ #define _LIBERTAS_SPI_H_ struct spi_device; struct libertas_spi_platform_data { /* There are two ways to read data from the WLAN module's S...
Linux işletim sistemi çekirdeği için 'include/linux/spi/at73c213' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Board-specific data used to set up AT73c213 audio DAC driver. */ #ifndef __LINUX_SPI_AT73C213_H #define __LINUX_SPI_AT73C213_H /** * at73c213_board_info - how the external DAC is wired to the device. * * @ssc_id: SSC platform_driver id the DAC shall use to stream ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/eeprom' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_EEPROM_H #define __LINUX_SPI_EEPROM_H #include <linux/memory.h> /* * Put one of these structures in platform_data for SPI EEPROMS handled * by the "at25" driver. On SPI, most EEPROMS understand the same core * command set. If you need to support EEP...
Linux işletim sistemi çekirdeği için 'include/linux/spi/ds1305' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_DS1305_H #define __LINUX_SPI_DS1305_H /* * One-time configuration for ds1305 and ds1306 RTC chips. * * Put a pointer to this in spi_board_info.platform_data if you want to * be sure that Linux (re)initializes this as needed ... after losing * backup ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/flash' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_SPI_FLASH_H #define LINUX_SPI_FLASH_H struct mtd_partition; /** * struct flash_platform_data: board-specific flash data * @name: optional flash device name (eg, as used with mtdparts=) * @parts: optional array of mtd_partitions for static partitioning * @n...
Linux işletim sistemi çekirdeği için 'include/linux/spi/ads7846' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* linux/spi/ads7846.h */ struct ads7846_platform_data { u16 model; /* 7843, 7845, 7846, 7873. */ u16 vref_delay_usecs; /* 0 for external vref; etc */ u16 vref_mv; /* external vref value, milliVolts * ads7846: if 0, use internal vref */ bool keep_vref_on; /* se...
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi_oc_tiny' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_SPI_SPI_OC_TINY_H #define _LINUX_SPI_SPI_OC_TINY_H /** * struct tiny_spi_platform_data - platform data of the OpenCores tiny SPI * @freq: input clock freq to the core. * @baudwidth: baud rate divider width of the core. * * freq and baudwidth are used only...
Linux işletim sistemi çekirdeği için 'include/linux/spi/tdo24m' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TDO24M_H__ #define __TDO24M_H__ enum tdo24m_model { TDO24M, TDO35S, }; struct tdo24m_platform_data { enum tdo24m_model model; }; #endif /* __TDO24M_H__ */ ```
Linux işletim sistemi çekirdeği için 'include/linux/spi/sh_hspi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2011 Kuninori Morimoto */ #ifndef SH_HSPI_H #define SH_HSPI_H struct sh_hspi_info { }; #endif ```
Linux işletim sistemi çekirdeği için 'include/linux/spi/sh_msiof' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __SPI_SH_MSIOF_H__ #define __SPI_SH_MSIOF_H__ #include <linux/bitfield.h> #include <linux/bits.h> #define SITMDR1 0x00 /* Transmit Mode Register 1 */ #define SITMDR2 0x04 /* Transmit Mode Register 2 */ #define SITMDR3 0x08 /* Transmit Mode Register 3 */ #define SIRM...
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi-fsl-dspi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Freescale DSPI controller driver * * Copyright (c) 2017 Angelo Dureghello <angelo@sysam.it> */ #ifndef SPI_FSL_DSPI_HEADER_H #define SPI_FSL_DSPI_HEADER_H /** * struct fsl_dspi_platform_data - platform data for the Freescale DSPI driver * @bus_num: board spe...
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi_gpio' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_GPIO_H #define __LINUX_SPI_GPIO_H /* * For each bitbanged SPI bus, set up a platform_device node with: * - name "spi_gpio" * - id the same as the SPI bus number it implements * - dev.platform data pointing to a struct spi_gpio_platform_data * ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/mc33880' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_SPI_MC33880_H #define LINUX_SPI_MC33880_H struct mc33880_platform_data { /* number assigned to the first GPIO */ unsigned base; }; #endif ```
Linux işletim sistemi çekirdeği için 'include/linux/spi/max7301' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_SPI_MAX7301_H #define LINUX_SPI_MAX7301_H #include <linux/gpio/driver.h> /* * Some registers must be read back to modify. * To save time we cache them here in memory */ struct max7301 { struct mutex lock; u8 port_config[8]; /* field 0 is unused */ u32 ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/xilinx_spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_XILINX_SPI_H #define __LINUX_SPI_XILINX_SPI_H #include <linux/types.h> struct spi_board_info; /** * struct xspi_platform_data - Platform data of the Xilinx SPI driver * @devices: Devices to add when the driver is probed. * @num_devices: Number of de...
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi_bitbang' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __SPI_BITBANG_H #define __SPI_BITBANG_H #include <linux/workqueue.h> typedef u32 (*spi_bb_txrx_word_fn)(struct spi_device *, unsigned int, u32, u8, unsigned int); struct spi_bitbang { struct mutex lock; u8 busy; u8 use_dma; u16 flags; /* extra spi->mode...
Linux işletim sistemi çekirdeği için 'include/linux/spi/tle62x0' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * tle62x0.h - platform glue to Infineon TLE62x0 driver chips * * Copyright 2007 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> */ struct tle62x0_pdata { unsigned int init_state; unsigned int gpio_count; }; ```
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later * * Copyright (C) 2005 David Brownell */ #ifndef __LINUX_SPI_H #define __LINUX_SPI_H #include <linux/acpi.h> #include <linux/bits.h> #include <linux/completion.h> #include <linux/device.h> #include <linux/gpio/consumer.h> #include <linux/kthread.h> #include <linux/...
Linux işletim sistemi çekirdeği için 'include/linux/spi/mmc_spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_MMC_SPI_H #define __LINUX_SPI_MMC_SPI_H #include <linux/spi/spi.h> #include <linux/interrupt.h> struct device; struct mmc_host; /* Put this in platform_data of a device being used to manage an MMC/SD * card slot. (Modeled after PXA mmc glue; see that ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/spi-mem' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (C) 2018 Exceet Electronics GmbH * Copyright (C) 2018 Bootlin * * Author: * Peter Pan <peterpandong@micron.com> * Boris Brezillon <boris.brezillon@bootlin.com> */ #ifndef __LINUX_SPI_MEM_H #define __LINUX_SPI_MEM_H #include <linux/spi/spi.h> #define ...
Linux işletim sistemi çekirdeği için 'include/linux/spi/mxs-spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * include/linux/spi/mxs-spi.h * * Freescale i.MX233/i.MX28 SPI controller register definition * * Copyright 2008 Embedded Alley Solutions, Inc. * Copyright 2009-2011 Freescale Semiconductor, Inc. */ #ifndef __LINUX_SPI_MXS_SPI_H__ #define __LINUX_SPI_MXS_S...
Linux işletim sistemi çekirdeği için 'include/linux/spi/corgi_lcd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SPI_CORGI_LCD_H #define __LINUX_SPI_CORGI_LCD_H #define CORGI_LCD_MODE_QVGA 1 #define CORGI_LCD_MODE_VGA 2 struct corgi_lcd_platform_data { int init_mode; int max_intensity; int default_intensity; int limit_mask; void (*notify)(int intensity); void (*...
Linux işletim sistemi çekirdeği için 'include/linux/spi/ad7877' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* linux/spi/ad7877.h */ /* Touchscreen characteristics vary between boards and models. The * platform_data for the device's "struct device" holds this information. * * It's OK if the min/max values are zero. */ struct ad7877_platform_data { u16 model; /* 7877 */ u1...
Linux işletim sistemi çekirdeği için 'include/linux/spi/altera' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Header File for Altera SPI Driver. */ #ifndef __LINUX_SPI_ALTERA_H #define __LINUX_SPI_ALTERA_H #include <linux/interrupt.h> #include <linux/regmap.h> #include <linux/spi/spi.h> #include <linux/types.h> #define ALTERA_SPI_MAX_CS 32 /** * struct altera_spi_platform...
Linux işletim sistemi çekirdeği için 'include/linux/spi/offload/consumer' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2024 Analog Devices Inc. * Copyright (C) 2024 BayLibre, SAS */ #ifndef __LINUX_SPI_OFFLOAD_CONSUMER_H #define __LINUX_SPI_OFFLOAD_CONSUMER_H #include <linux/module.h> #include <linux/spi/offload/types.h> #include <linux/types.h> MODULE_IMPORT_NS(...
Linux işletim sistemi çekirdeği için 'include/linux/spi/offload/provider' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2024 Analog Devices Inc. * Copyright (C) 2024 BayLibre, SAS */ #ifndef __LINUX_SPI_OFFLOAD_PROVIDER_H #define __LINUX_SPI_OFFLOAD_PROVIDER_H #include <linux/module.h> #include <linux/spi/offload/types.h> #include <linux/types.h> MODULE_IMPORT_NS(...
Linux işletim sistemi çekirdeği için 'include/linux/spi/offload/types' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2024 Analog Devices Inc. * Copyright (C) 2024 BayLibre, SAS */ #ifndef __LINUX_SPI_OFFLOAD_TYPES_H #define __LINUX_SPI_OFFLOAD_TYPES_H #include <linux/bits.h> #include <linux/types.h> struct device; /* This is write xfer but TX uses external dat...
Linux işletim sistemi çekirdeği için 'include/linux/byteorder/little_endian' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_BYTEORDER_LITTLE_ENDIAN_H #define _LINUX_BYTEORDER_LITTLE_ENDIAN_H #include <uapi/linux/byteorder/little_endian.h> #ifdef CONFIG_CPU_BIG_ENDIAN #warning inconsistent configuration, CONFIG_CPU_BIG_ENDIAN is set #endif #include <linux/byteorder/generic.h> #end...
Linux işletim sistemi çekirdeği için 'include/linux/byteorder/generic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_BYTEORDER_GENERIC_H #define _LINUX_BYTEORDER_GENERIC_H /* * linux/byteorder/generic.h * Generic Byte-reordering support * * The "... p" macros, like le64_to_cpup, can be used with pointers * to unaligned data, but there will be a performance penalty on ...
Linux işletim sistemi çekirdeği için 'include/linux/byteorder/big_endian' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_BYTEORDER_BIG_ENDIAN_H #define _LINUX_BYTEORDER_BIG_ENDIAN_H #include <uapi/linux/byteorder/big_endian.h> #ifndef CONFIG_CPU_BIG_ENDIAN #warning inconsistent configuration, needs CONFIG_CPU_BIG_ENDIAN #endif #include <linux/byteorder/generic.h> #endif /* _LI...
Linux işletim sistemi çekirdeği için 'include/linux/usb/midi-v2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * <linux/usb/midi-v2.h> -- USB MIDI 2.0 definitions. */ #ifndef __LINUX_USB_MIDI_V2_H #define __LINUX_USB_MIDI_V2_H #include <linux/types.h> #include <linux/usb/midi.h> /* A.1 MS Class-Specific Interface Descriptor Types */ #define USB_DT_CS_GR_TRM_BLOCK 0x26 /* A.1 ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/m66592' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * M66592 driver platform data * * Copyright (C) 2009 Renesas Solutions Corp. */ #ifndef __LINUX_USB_M66592_H #define __LINUX_USB_M66592_H #define M66592_PLATDATA_XTAL_12MHZ 0x01 #define M66592_PLATDATA_XTAL_24MHZ 0x02 #define M66592_PLATDATA_XTAL_48MHZ 0x03 struct m66...
Linux işletim sistemi çekirdeği için 'include/linux/usb/func_utils' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * func_utils.h * * Utility definitions for USB functions * * Copyright (c) 2013 Samsung Electronics Co., Ltd. * http://www.samsung.com * * Author: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com> */ #ifndef _FUNC_UTILS_H_ #define _FUNC_UTILS_H_ #include <linux/usb/...
Linux işletim sistemi çekirdeği için 'include/linux/usb/phy' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * USB PHY defines * * These APIs may be used between USB controllers. USB device drivers * (for either host or peripheral roles) don't use these calls; they * continue to use just usb_device and usb_gadget. */ #ifndef __LINUX_USB_PHY_H #define __LINUX_USB_PHY_H #i...
Linux işletim sistemi çekirdeği için 'include/linux/usb/ehci-dbgp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Standalone EHCI usb debug driver * * Originally written by: * Eric W. Biederman" <ebiederm@xmission.com> and * Yinghai Lu <yhlu.kernel@gmail.com> * * Changes for early/late printk and HW errata: * Jason Wessel <jason.wessel@windriver.com> * Copyright (C) 200...
Linux işletim sistemi çekirdeği için 'include/linux/usb/onboard_dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_USB_ONBOARD_DEV_H #define __LINUX_USB_ONBOARD_DEV_H struct usb_device; struct list_head; #if IS_ENABLED(CONFIG_USB_ONBOARD_DEV) void onboard_dev_create_pdevs(struct usb_device *parent_dev, struct list_head *pdev_list); void onboard_dev_destroy_pdevs(struct ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/functionfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_FUNCTIONFS_H__ #define __LINUX_FUNCTIONFS_H__ 1 #include <uapi/linux/usb/functionfs.h> #endif ```
Linux işletim sistemi çekirdeği için 'include/linux/usb/webusb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0+ */ /* * WebUSB descriptors and constants * * Copyright (C) 2023 Jó Ágila Bitsch <jgilab@gmail.com> */ #ifndef __LINUX_USB_WEBUSB_H #define __LINUX_USB_WEBUSB_H #include "uapi/linux/usb/ch9.h" /* * Little Endian PlatformCapablityUUID for WebUSB * 3408b638-09a9-47a0-8bfd...
Linux işletim sistemi çekirdeği için 'include/linux/usb/usb338x' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * USB 338x super/high/full speed USB device controller. * Unlike many such controllers, this one talks PCI. * * Copyright (C) 2002 NetChip Technology, Inc. (http://www.netchip.com) * Copyright (C) 2003 David Brownell * Copyright (C) 2014 Ricardo Ribalda - Qtechnology/A...
Linux işletim sistemi çekirdeği için 'include/linux/usb/g_hid' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * g_hid.h -- Header file for USB HID gadget driver * * Copyright (C) 2010 Fabien Chouteau <fabien.chouteau@barco.com> */ #ifndef __LINUX_USB_G_HID_H #define __LINUX_USB_G_HID_H struct hidg_func_descriptor { unsigned char subclass; unsigned char protocol; unsigned ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/of' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * OF helpers for usb devices. */ #ifndef __LINUX_USB_OF_H #define __LINUX_USB_OF_H #include <linux/usb.h> #include <linux/usb/ch9.h> #include <linux/usb/otg.h> #include <linux/usb/phy.h> struct usb_device; #if IS_ENABLED(CONFIG_OF) enum usb_dr_mode of_usb_get_dr_mode_by...
Linux işletim sistemi çekirdeği için 'include/linux/usb/chipidea' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Platform data for the chipidea USB dual role controller */ #ifndef __LINUX_USB_CHIPIDEA_H #define __LINUX_USB_CHIPIDEA_H #include <linux/extcon.h> #include <linux/usb/otg.h> struct ci_hdrc; /** * struct ci_hdrc_cable - structure for external connector cable state ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/xhci-sideband' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * xHCI host controller sideband support * * Copyright (c) 2023-2025, Intel Corporation. * * Author: Mathias Nyman <mathias.nyman@linux.intel.com> */ #ifndef __LINUX_XHCI_SIDEBAND_H #define __LINUX_XHCI_SIDEBAND_H #include <linux/scatterlist.h> #include <linux/usb.h>...
Linux işletim sistemi çekirdeği için 'include/linux/usb/otg' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* USB OTG (On The Go) defines */ /* * * These APIs may be used between USB controllers. USB device drivers * (for either host or peripheral roles) don't use these calls; they * continue to use just usb_device and usb_gadget. */ #ifndef __LINUX_USB_OTG_H #define __LINU...
Linux işletim sistemi çekirdeği için 'include/linux/usb/pd_bdo' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright 2015-2017 Google, Inc */ #ifndef __LINUX_USB_PD_BDO_H #define __LINUX_USB_PD_BDO_H /* BDO : BIST Data Object */ #define BDO_MODE_RECV (0 << 28) #define BDO_MODE_TRANSMIT (1 << 28) #define BDO_MODE_COUNTERS (2 << 28) #define BDO_MODE_CARRIER0 (3 <<...
Linux işletim sistemi çekirdeği için 'include/linux/usb/otg-fsm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2007,2008 Freescale Semiconductor, Inc. */ #ifndef __LINUX_USB_OTG_FSM_H #define __LINUX_USB_OTG_FSM_H #include <linux/mutex.h> #include <linux/errno.h> #define PROTO_UNDEF (0) #define PROTO_HOST (1) #define PROTO_GADGET (2) #define OTG_STS_SELECTOR 0xF...
Linux işletim sistemi çekirdeği için 'include/linux/usb/irda' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * USB IrDA Bridge Device Definition */ #ifndef __LINUX_USB_IRDA_H #define __LINUX_USB_IRDA_H /* This device should use Application-specific class */ #define USB_SUBCLASS_IRDA 0x02 /*-------------------------------------------------------------------------*/ /* Cla...
Linux işletim sistemi çekirdeği için 'include/linux/usb/rndis_host' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Host Side support for RNDIS Networking Links * Copyright (C) 2005 by David Brownell */ #ifndef __LINUX_USB_RNDIS_HOST_H #define __LINUX_USB_RNDIS_HOST_H #include <linux/rndis.h> /* * CONTROL uses CDC "encapsulated commands" with funky notifications. * - control-ou...
Linux işletim sistemi çekirdeği için 'include/linux/usb/isp116x' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Board initialization code should put one of these into dev->platform_data * and place the isp116x onto platform_bus. */ #ifndef __LINUX_USB_ISP116X_H #define __LINUX_USB_ISP116X_H struct isp116x_platform_data { /* Enable internal resistors on downstream ports */ u...
Linux işletim sistemi çekirdeği için 'include/linux/usb/cdc_ncm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) /* * Copyright (C) ST-Ericsson 2010-2012 * Contact: Alexey Orishko <alexey.orishko@stericsson.com> * Original author: Hans Petter Selasky <hans.petter.selasky@stericsson.com> * * USB Host Driver for Network Control Model (NCM) * http://www.usb.org/develop...
Linux işletim sistemi çekirdeği için 'include/linux/usb/iowarrior' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_USB_IOWARRIOR_H #define __LINUX_USB_IOWARRIOR_H #define CODEMERCS_MAGIC_NUMBER 0xC0 /* like COde Mercenaries */ /* Define the ioctl commands for reading and writing data */ #define IOW_WRITE _IOW(CODEMERCS_MAGIC_NUMBER, 1, __u8 *) #define IOW_READ _IOW(CODEM...
Linux işletim sistemi çekirdeği için 'include/linux/usb/mctp-usb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * mctp-usb.h - MCTP USB transport binding: common definitions, * based on DMTF0283 specification: * https://www.dmtf.org/sites/default/files/standards/documents/DSP0283_1.0.1.pdf * * These are protocol-level definitions, that may be shared between host * and gadget d...
Linux işletim sistemi çekirdeği için 'include/linux/usb/role' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef __LINUX_USB_ROLE_H #define __LINUX_USB_ROLE_H #include <linux/device.h> struct usb_role_switch; enum usb_role { USB_ROLE_NONE, USB_ROLE_HOST, USB_ROLE_DEVICE, }; typedef int (*usb_role_switch_set_t)(struct usb_role_switch *sw, enum usb_role role); typede...
Linux işletim sistemi çekirdeği için 'include/linux/usb/phy_companion' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * phy-companion.h -- phy companion to indicate the comparator part of PHY * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com * * Author: Kishon Vijay Abraham I <kishon@ti.com> */ #ifndef __DRIVERS_PHY_COMPANION_H #define __DRIVERS_PHY_COMPANION...
Linux işletim sistemi çekirdeği için 'include/linux/usb/rzv2m_usb3drd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __RZV2M_USB3DRD_H #define __RZV2M_USB3DRD_H #include <linux/types.h> struct rzv2m_usb3drd { void __iomem *reg; int drd_irq; struct device *dev; struct reset_control *drd_rstc; }; #if IS_ENABLED(CONFIG_USB_RZV2M_USB3DRD) void rzv2m_usb3drd_reset(struct device *d...
Linux işletim sistemi çekirdeği için 'include/linux/usb/ccid' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (c) 2018 Vincent Pelletier */ /* */ #ifndef __CCID_H #define __CCID_H #include <linux/types.h> #define USB_INTERFACE_CLASS_CCID 0x0b struct ccid_descriptor { __u8 bLength; __u8 bDescriptorType; __le16 bcdCCID; __u8 bMaxSlotIndex; __u8 ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/hcd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2001-2002 by David Brownell */ #ifndef __USB_CORE_HCD_H #define __USB_CORE_HCD_H #ifdef __KERNEL__ #include <linux/rwsem.h> #include <linux/interrupt.h> #include <linux/idr.h> #define MAX_TOPO_LEVEL 6 /* This file contains declarations of usbcore inte...
Linux işletim sistemi çekirdeği için 'include/linux/usb/typec' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_USB_TYPEC_H #define __LINUX_USB_TYPEC_H #include <linux/types.h> /* USB Type-C Specification releases */ #define USB_TYPEC_REV_1_0 0x100 /* 1.0 */ #define USB_TYPEC_REV_1_1 0x110 /* 1.1 */ #define USB_TYPEC_REV_1_2 0x120 /* 1.2 */ #define USB_TYPEC_REV_1_3 ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/serial' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * USB Serial Converter stuff * * Copyright (C) 1999 - 2012 * Greg Kroah-Hartman (greg@kroah.com) */ #ifndef __LINUX_USB_SERIAL_H #define __LINUX_USB_SERIAL_H #include <linux/kref.h> #include <linux/mutex.h> #include <linux/serial.h> #include <linux/kfifo.h> /* The...
Linux işletim sistemi çekirdeği için 'include/linux/usb/c67x00' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * usb_c67x00.h: platform definitions for the Cypress C67X00 USB chip * * Copyright (C) 2006-2008 Barco N.V. */ #ifndef _LINUX_USB_C67X00_H #define _LINUX_USB_C67X00_H /* SIE configuration */ #define C67X00_SIE_UNUSED 0 #define C67X00_SIE_HOST 1 #define C67X00_SIE_PERI...
Linux işletim sistemi çekirdeği için 'include/linux/usb/cdc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * USB CDC common helpers * * Copyright (c) 2015 Oliver Neukum <oneukum@suse.com> */ #ifndef __LINUX_USB_CDC_H #define __LINUX_USB_CDC_H #include <uapi/linux/usb/cdc.h> /* * inofficial magic numbers */ #define CDC_PHONET_MAGIC_NUMBER 0xAB /* * parsing CDC headers ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/gadget_configfs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __GADGET_CONFIGFS__ #define __GADGET_CONFIGFS__ #include <linux/configfs.h> #define GS_STRINGS_W(__struct, __name) \ static ssize_t __struct##_##__name##_store(struct config_item *item, \ const char *page, size_t len) \ { \ struct __struct *gs = to_##__str...
Linux işletim sistemi çekirdeği için 'include/linux/usb/ch9' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file holds USB constants and structures that are needed for * USB device APIs. These are used by the USB device model, which is * defined in chapter 9 of the USB 2.0 specification and in the * Wireless USB 1.0 spec (now defunct). Linux has several APIs in C th...
Linux işletim sistemi çekirdeği için 'include/linux/usb/typec_tbt' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __USB_TYPEC_TBT_H #define __USB_TYPEC_TBT_H #include <linux/usb/typec_altmode.h> #include <linux/bitfield.h> #define USB_TYPEC_VENDOR_INTEL 0x8087 /* Alias for convenience */ #define USB_TYPEC_TBT_SID USB_TYPEC_VENDOR_INTEL /* Connector state for Thunderbolt3 */ ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/gadget' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * <linux/usb/gadget.h> * * We call the USB code inside a Linux-based peripheral device a "gadget" * driver, except for the hardware-specific bus glue. One USB host can * talk to many USB gadgets, but the gadgets are only able to communicate * to one host. * * * (C) ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/pd_vdo' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright 2015-2017 Google, Inc */ #ifndef __LINUX_USB_PD_VDO_H #define __LINUX_USB_PD_VDO_H #include "pd.h" #include <linux/bitfield.h> /* * VDO : Vendor Defined Message Object * VDM object is minimum of VDM header + 6 additional data objects. */ #defi...
Linux işletim sistemi çekirdeği için 'include/linux/usb/sl811' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * board initialization should put one of these into dev->platform_data * and place the sl811hs onto platform_bus named "sl811-hcd". */ #ifndef __LINUX_USB_SL811_H #define __LINUX_USB_SL811_H struct sl811_platform_data { unsigned can_wakeup:1; /* given port_power, m...
Linux işletim sistemi çekirdeği için 'include/linux/usb/typec_retimer' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __USB_TYPEC_RETIMER #define __USB_TYPEC_RETIMER #include <linux/property.h> #include <linux/usb/typec.h> struct device; struct typec_retimer; struct typec_altmode; struct fwnode_handle; struct typec_retimer_state { struct typec_altmode *alt; unsigned long mode; ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/usb_phy_generic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_USB_NOP_XCEIV_H #define __LINUX_USB_NOP_XCEIV_H #include <linux/usb/otg.h> #if IS_ENABLED(CONFIG_NOP_USB_XCEIV) /* sometimes transceivers are accessed only through e.g. ULPI */ extern struct platform_device *usb_phy_generic_register(void); extern void usb_ph...
Linux işletim sistemi çekirdeği için 'include/linux/usb/input' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2005 Dmitry Torokhov */ #ifndef __LINUX_USB_INPUT_H #define __LINUX_USB_INPUT_H #include <linux/usb.h> #include <linux/input.h> #include <asm/byteorder.h> static inline void usb_to_input_id(const struct usb_device *dev, struct input_id *id) { id->bustype...
Linux işletim sistemi çekirdeği için 'include/linux/usb/ohci_pdriver' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2012 Hauke Mehrtens <hauke@hauke-m.de> */ #ifndef __USB_CORE_OHCI_PDRIVER_H #define __USB_CORE_OHCI_PDRIVER_H /** * struct usb_ohci_pdata - platform_data for generic ohci driver * * @big_endian_desc: BE descriptors * @big_endian_mmio: BE registers * ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/tcpm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright 2015-2017 Google, Inc */ #ifndef __LINUX_USB_TCPM_H #define __LINUX_USB_TCPM_H #include <linux/bitops.h> #include <linux/usb/typec.h> #include "pd.h" enum typec_cc_status { TYPEC_CC_OPEN, TYPEC_CC_RA, TYPEC_CC_RD, TYPEC_CC_RP_DEF, TYPEC_CC_RP...
Linux işletim sistemi çekirdeği için 'include/linux/usb/pd_ext_sdb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2017 Dialog Semiconductor * * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> */ #ifndef __LINUX_USB_PD_EXT_SDB_H #define __LINUX_USB_PD_EXT_SDB_H /* SDB : Status Data Block */ enum usb_pd_ext_sdb_fields { USB_PD_EXT_SDB_INTERNAL_TEMP = 0, ...
Linux işletim sistemi çekirdeği için 'include/linux/usb/pd_ado' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2017 Dialog Semiconductor * * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> */ #ifndef __LINUX_USB_PD_ADO_H #define __LINUX_USB_PD_ADO_H /* ADO : Alert Data Object */ #define USB_PD_ADO_TYPE_SHIFT 24 #define USB_PD_ADO_TYPE_MASK 0xff #d...
Linux işletim sistemi çekirdeği için 'include/linux/usb/ezusb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __EZUSB_H #define __EZUSB_H extern int ezusb_fx1_set_reset(struct usb_device *dev, unsigned char reset_bit); extern int ezusb_fx1_ihex_firmware_download(struct usb_device *dev, const char *firmware_path); #endif /* __EZUSB_H */ ```
Linux işletim sistemi çekirdeği için 'include/linux/usb/pd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright 2015-2017 Google, Inc */ #ifndef __LINUX_USB_PD_H #define __LINUX_USB_PD_H #include <linux/bitfield.h> #include <linux/kernel.h> #include <linux/types.h> #include <linux/usb/typec.h> /* USB PD Messages */ enum pd_ctrl_msg_type { /* 0 Reserved */ ...