instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'drivers/cxl/cxl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright(c) 2020 Intel Corporation. */ #ifndef __CXL_H__ #define __CXL_H__ #include <linux/libnvdimm.h> #include <linux/bitfield.h> #include <linux/notifier.h> #include <linux/bitops.h> #include <linux/log2.h> #include <linux/node.h> #include <linux/io.h> #include ...
Linux işletim sistemi çekirdeği için 'drivers/cxl/cxlmem' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright(c) 2020-2021 Intel Corporation. */ #ifndef __CXL_MEM_H__ #define __CXL_MEM_H__ #include <uapi/linux/cxl_mem.h> #include <linux/pci.h> #include <linux/cdev.h> #include <linux/uuid.h> #include <linux/node.h> #include <cxl/event.h> #include <cxl/mailbox.h> #inc...
Linux kernel'inin 'drivers/cxl/security' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <linux/libnvdimm.h> #include <linux/unaligned.h> #include <linux/module.h> #include <linux/async.h> #include <linux/slab.h> #include <linux/memregion.h> #include "cxlmem.h" #include "cxl.h" static uns...
Linux kernel'inin 'drivers/cxl/pci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. All rights reserved. */ #include <linux/unaligned.h> #include <linux/io-64-nonatomic-lo-hi.h> #include <linux/moduleparam.h> #include <linux/module.h> #include <linux/delay.h> #include <linux/sizes.h> #include <linux/mutex.h> #include...
Linux kernel'inin 'drivers/cxl/acpi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2021 Intel Corporation. All rights reserved. */ #include <linux/platform_device.h> #include <linux/module.h> #include <linux/device.h> #include <linux/kernel.h> #include <linux/acpi.h> #include <linux/pci.h> #include <linux/node.h> #include <asm/div64.h> #in...
Linux kernel'inin 'drivers/cxl/pmem' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2021 Intel Corporation. All rights reserved. */ #include <linux/libnvdimm.h> #include <linux/unaligned.h> #include <linux/device.h> #include <linux/module.h> #include <linux/ndctl.h> #include <linux/async.h> #include <linux/slab.h> #include <linux/nd.h> #inc...
Linux kernel'inin 'drivers/cxl/core/trace' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <cxl.h> #include "core.h" #define CREATE_TRACE_POINTS #include "trace.h" ```
Linux kernel'inin 'drivers/cxl/core/mbox' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. All rights reserved. */ #include <linux/security.h> #include <linux/debugfs.h> #include <linux/ktime.h> #include <linux/mutex.h> #include <linux/unaligned.h> #include <cxlpci.h> #include <cxlmem.h> #include <cxl.h> #include "core.h" ...
Linux kernel'inin 'drivers/cxl/core/port' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. All rights reserved. */ #include <linux/platform_device.h> #include <linux/memregion.h> #include <linux/workqueue.h> #include <linux/debugfs.h> #include <linux/device.h> #include <linux/module.h> #include <linux/pci.h> #include <linux...
Linux kernel'inin 'drivers/cxl/core/suspend' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <linux/atomic.h> #include <linux/export.h> #include "cxlmem.h" static atomic_t mem_active; bool cxl_mem_active(void) { return atomic_read(&mem_active) != 0; } void cxl_mem_active_inc(void) { atomi...
Linux işletim sistemi çekirdeği için 'drivers/cxl/core/mce' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright(c) 2024 Intel Corporation. All rights reserved. */ #ifndef _CXL_CORE_MCE_H_ #define _CXL_CORE_MCE_H_ #include <linux/notifier.h> #ifdef CONFIG_CXL_MCE int devm_cxl_register_mce_notifier(struct device *dev, struct notifier_block *mce_notifier); #else...
Linux kernel'inin 'drivers/cxl/core/pmu' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2023 Huawei. All rights reserved. */ #include <linux/device.h> #include <linux/slab.h> #include <linux/idr.h> #include <cxlmem.h> #include <pmu.h> #include <cxl.h> #include "core.h" static void cxl_pmu_release(struct device *dev) { struct cxl_pmu *pmu = t...
Linux kernel'inin 'drivers/cxl/core/region_dax' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright(c) 2022 Intel Corporation. All rights reserved. * Copyright(c) 2026 Meta Technologies Inc. All rights reserved. */ #include <linux/device.h> #include <linux/slab.h> #include <cxlmem.h> #include <cxl.h> #include "core.h" static void cxl_dax_region_release(...
Linux işletim sistemi çekirdeği için 'drivers/cxl/core/trace' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #undef TRACE_SYSTEM #define TRACE_SYSTEM cxl #if !defined(_CXL_EVENTS_H) || defined(TRACE_HEADER_MULTI_READ) #define _CXL_EVENTS_H #include <linux/tracepoint.h> #include <linux/pci.h> #include <linux/unaligned.h> ...
Linux kernel'inin 'drivers/cxl/core/edac' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * CXL EDAC memory feature driver. * * Copyright (c) 2024-2025 HiSilicon Limited. * * - Supports functions to configure EDAC features of the * CXL memory devices. * - Registers with the EDAC device subsystem driver to expose * the features sysfs attributes...
Linux işletim sistemi çekirdeği için 'drivers/cxl/core/core' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright(c) 2020 Intel Corporation. */ #ifndef __CXL_CORE_H__ #define __CXL_CORE_H__ #include <cxl/mailbox.h> #include <linux/rwsem.h> extern const struct device_type cxl_nvdimm_bridge_type; extern const struct device_type cxl_nvdimm_type; extern const struct devi...
Linux kernel'inin 'drivers/cxl/core/memdev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. */ #include <linux/io-64-nonatomic-lo-hi.h> #include <linux/firmware.h> #include <linux/device.h> #include <linux/slab.h> #include <linux/idr.h> #include <linux/pci.h> #include <cxlmem.h> #include "trace.h" #include "core.h" static ...
Linux kernel'inin 'drivers/cxl/core/atl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2025 Advanced Micro Devices, Inc. */ #include <linux/prmt.h> #include <linux/pci.h> #include <linux/acpi.h> #include <cxlmem.h> #include "core.h" /* * PRM Address Translation - CXL DPA to System Physical Address * * Reference: * * AMD Family 1Ah...
Linux kernel'inin 'drivers/cxl/core/ras' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2025 AMD Corporation. All rights reserved. */ #include <linux/pci.h> #include <linux/aer.h> #include <cxl/event.h> #include <cxlmem.h> #include <cxlpci.h> #include "trace.h" static void cxl_cper_trace_corr_port_prot_err(struct pci_dev *pdev, str...
Linux kernel'inin 'drivers/cxl/core/hdm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <linux/seq_file.h> #include <linux/device.h> #include <linux/delay.h> #include "cxlmem.h" #include "core.h" /** * DOC: cxl core hdm * * Compute Express Link Host Managed Device Memory, starting wi...
Linux kernel'inin 'drivers/cxl/core/mce' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2024 Intel Corporation. All rights reserved. */ #include <linux/mm.h> #include <linux/notifier.h> #include <linux/set_memory.h> #include <asm/mce.h> #include <cxlmem.h> #include "mce.h" static int cxl_handle_mce(struct notifier_block *nb, unsigned long val,...
Linux kernel'inin 'drivers/cxl/core/pci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2021 Intel Corporation. All rights reserved. */ #include <linux/units.h> #include <linux/io-64-nonatomic-lo-hi.h> #include <linux/device.h> #include <linux/delay.h> #include <linux/pci.h> #include <linux/pci-doe.h> #include <linux/aer.h> #include <cxlpci.h> ...
Linux kernel'inin 'drivers/cxl/core/cdat' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2023 Intel Corporation. All rights reserved. */ #include <linux/acpi.h> #include <linux/xarray.h> #include <linux/fw_table.h> #include <linux/node.h> #include <linux/overflow.h> #include "cxlpci.h" #include "cxlmem.h" #include "core.h" #include "cxl.h" stru...
Linux kernel'inin 'drivers/cxl/core/features' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2024-2025 Intel Corporation. All rights reserved. */ #include <linux/fwctl.h> #include <linux/device.h> #include <cxl/mailbox.h> #include <cxl/features.h> #include <uapi/fwctl/cxl.h> #include "cxl.h" #include "core.h" #include "cxlmem.h" /** * DOC: cxl fea...
Linux kernel'inin 'drivers/cxl/core/regs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. */ #include <linux/io-64-nonatomic-lo-hi.h> #include <linux/device.h> #include <linux/slab.h> #include <linux/pci.h> #include <cxlmem.h> #include <cxlpci.h> #include <pmu.h> #include "core.h" /** * DOC: cxl registers * * CXL devi...
Linux kernel'inin 'drivers/cxl/core/pmem' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. */ #include <linux/device.h> #include <linux/slab.h> #include <linux/idr.h> #include <cxlmem.h> #include <cxl.h> #include "core.h" /** * DOC: cxl pmem * * The core CXL PMEM infrastructure supports persistent memory * provisioning...
Linux kernel'inin 'drivers/cxl/core/region_pmem' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <linux/device.h> #include <linux/slab.h> #include <cxlmem.h> #include <cxl.h> #include "core.h" static void cxl_pmem_region_release(struct device *dev) { struct cxl_pmem_region *cxlr_pmem = to_cxl_pm...
Linux kernel'inin 'drivers/cxl/core/ras_rch' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2025 AMD Corporation. All rights reserved. */ #include <linux/types.h> #include <linux/aer.h> #include "cxl.h" #include "core.h" #include "cxlmem.h" void cxl_dport_map_rch_aer(struct cxl_dport *dport) { resource_size_t aer_phys; struct device *host; u16...
Linux kernel'inin 'drivers/cxl/core/region' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2022 Intel Corporation. All rights reserved. */ #include <linux/memregion.h> #include <linux/genalloc.h> #include <linux/debugfs.h> #include <linux/device.h> #include <linux/module.h> #include <linux/memory.h> #include <linux/slab.h> #include <linux/uuid.h> ...
Linux kernel'inin 'drivers/nfc/trf7970a' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI TRF7970a RFID/NFC Transceiver Driver * * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com * * Author: Erick Macias <emacias@ti.com> * Author: Felipe Balbi <balbi@ti.com> * Author: Mark A. Greer <mgreer@animalcreek.com> */ #include <linu...
Linux kernel'inin 'drivers/nfc/port100' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Sony NFC Port-100 Series driver * Copyright (c) 2013, Intel Corporation. * * Partly based/Inspired by Stephen Tiedemann's nfcpy */ #include <linux/module.h> #include <linux/usb.h> #include <net/nfc/digital.h> #define VERSION "0.1" #define SONY_VENDOR_ID 0x054c...
Linux işletim sistemi çekirdeği için 'drivers/nfc/mei_phy' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LOCAL_MEI_PHY_H_ #define __LOCAL_MEI_PHY_H_ #include <linux/mei_cl_bus.h> #include <net/nfc/hci.h> #include <linux/uuid.h> #define MEI_NFC_UUID UUID_LE(0x0bb17a78, 0x2a8e, 0x4c50, \ 0x94, 0xd4, 0x50, 0x26, 0x67, 0x23, 0x77, 0x5c) #define MEI_NFC_HEADER_SIZE 10 #...
Linux kernel'inin 'drivers/nfc/virtual_ncidev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Virtual NCI device simulation driver * * Copyright (C) 2020 Samsung Electronics * Bongsu Jeon <bongsu.jeon@samsung.com> */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/miscdevice.h> #include <linux/mutex.h> #include <linux/wait.h> #incl...
Linux kernel'inin 'drivers/nfc/nfcsim' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * NFC hardware simulation driver * Copyright (c) 2013, Intel Corporation. */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/ctype.h> #include <linux/debugfs.h> #include <linux/nfc.h> #include <net/nfc/nfc.h> #include <ne...
Linux kernel'inin 'drivers/nfc/mei_phy' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2013, Intel Corporation. * * MEI Library for mei bus nfc device access */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/slab.h> #include <linux/nfc.h> #include "mei_phy.h" struct mei_nfc_hdr { u8 cmd; u8 status;...
Linux işletim sistemi çekirdeği için 'drivers/nfc/st95hf/spi' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * --------------------------------------------------------------------------- * drivers/nfc/st95hf/spi.h functions declarations for SPI communication * --------------------------------------------------------------------------- * Copyright (C) 2015 STMicroelectron...
Linux kernel'inin 'drivers/nfc/st95hf/core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * -------------------------------------------------------------------- * Driver for ST NFC Transceiver ST95HF * -------------------------------------------------------------------- * Copyright (C) 2015 STMicroelectronics Pvt. Ltd. All rights reserved. */ #include <...
Linux kernel'inin 'drivers/nfc/st95hf/spi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ---------------------------------------------------------------------------- * drivers/nfc/st95hf/spi.c function definitions for SPI communication * ---------------------------------------------------------------------------- * Copyright (C) 2015 STMicroelectronics...
Linux işletim sistemi çekirdeği için 'drivers/nfc/st-nci/ndlc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * NCI based Driver for STMicroelectronics NFC Chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #ifndef __LOCAL_NDLC_H_ #define __LOCAL_NDLC_H_ #include <linux/skbuff.h> #include <net/nfc/nfc.h> struct st_nci_se_status; /* Low L...
Linux işletim sistemi çekirdeği için 'drivers/nfc/st-nci/st-nci' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * NCI based Driver for STMicroelectronics NFC Chip * * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #ifndef __LOCAL_ST_NCI_H_ #define __LOCAL_ST_NCI_H_ #include "ndlc.h" /* Define private flags: */ #define ST_NCI_RUNNING 1 #define ST_N...
Linux kernel'inin 'drivers/nfc/st-nci/se' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Secure Element driver for STMicroelectronics NFC NCI chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #include <linux/module.h> #include <linux/nfc.h> #include <linux/delay.h> #include <net/nfc/nci.h> #include <net/nfc/nci_core.h> ...
Linux kernel'inin 'drivers/nfc/st-nci/core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * NCI based Driver for STMicroelectronics NFC Chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #include <linux/module.h> #include <linux/nfc.h> #include <net/nfc/nci.h> #include <net/nfc/nci_core.h> #include "st-nci.h" #define DRIV...
Linux kernel'inin 'drivers/nfc/st-nci/spi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * SPI Link Layer for ST NCI based Driver * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/spi/spi.h> #include <linux/gpio/consumer.h> #include <linux/acpi....
Linux kernel'inin 'drivers/nfc/st-nci/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * I2C Link Layer for ST NCI NFC controller familly based Driver * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/i2c.h> #include <linux/gpio/consumer.h> #i...
Linux kernel'inin 'drivers/nfc/st-nci/vendor_cmds' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Proprietary commands extension for STMicroelectronics NFC NCI Chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #include <net/genetlink.h> #include <linux/module.h> #include <linux/nfc.h> #include <linux/delay.h> #include <net/nfc/n...
Linux kernel'inin 'drivers/nfc/st-nci/ndlc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Low Level Transport (NDLC) Driver for STMicroelectronics NFC Chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #include <linux/sched.h> #include <net/nfc/nci_core.h> #include "st-nci.h" #define NDLC_TIMER_T1 100 #define NDLC_TIME...
Linux kernel'inin 'drivers/nfc/fdp/fdp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* ------------------------------------------------------------------------- * Copyright (C) 2014-2016, Intel Corporation * * ------------------------------------------------------------------------- */ #include <linux/module.h> #include <linux/nfc.h> #include <lin...
Linux kernel'inin 'drivers/nfc/fdp/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* ------------------------------------------------------------------------- * Copyright (C) 2014-2016, Intel Corporation * * ------------------------------------------------------------------------- */ #include <linux/module.h> #include <linux/acpi.h> #include <li...
Linux işletim sistemi çekirdeği için 'drivers/nfc/fdp/fdp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* ------------------------------------------------------------------------- * Copyright (C) 2014-2016, Intel Corporation * * ------------------------------------------------------------------------- */ #ifndef __LOCAL_FDP_H_ #define __LOCAL_FDP_H_ #include <ne...
Linux kernel'inin 'drivers/nfc/pn533/uart' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Driver for NXP PN532 NFC Chip - UART transport layer * * Copyright (C) 2018 Lemonage Software GmbH * Author: Lars Pöschel <poeschel@lemonage.de> * All rights reserved. */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/n...
Linux kernel'inin 'drivers/nfc/pn533/pn533' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for NXP PN533 NFC Chip - core functions * * Copyright (C) 2011 Instituto Nokia de Tecnologia * Copyright (C) 2012-2013 Tieto Poland */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/slab.h> #include <linux...
Linux kernel'inin 'drivers/nfc/pn533/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for NXP PN533 NFC Chip - I2C transport layer * * Copyright (C) 2011 Instituto Nokia de Tecnologia * Copyright (C) 2012-2013 Tieto Poland * Copyright (C) 2016 HALE electronic */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/module...
Linux işletim sistemi çekirdeği için 'drivers/nfc/pn533/pn533' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Driver for NXP PN533 NFC Chip * * Copyright (C) 2011 Instituto Nokia de Tecnologia * Copyright (C) 2012-2013 Tieto Poland */ #define PN533_DEVICE_STD 0x1 #define PN533_DEVICE_PASORI 0x2 #define PN533_DEVICE_ACR122U 0x3 #define PN533_DEVICE_PN532 0x4 #d...
Linux kernel'inin 'drivers/nfc/pn533/usb' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for NXP PN533 NFC Chip - USB transport layer * * Copyright (C) 2011 Instituto Nokia de Tecnologia * Copyright (C) 2012-2013 Tieto Poland */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/slab.h> #include <...
Linux kernel'inin 'drivers/nfc/microread/microread' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * HCI based Driver for Inside Secure microread NFC Chip * * Copyright (C) 2013 Intel Corporation. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/delay.h> #include <linux/slab.h> #include <linux/crc-cci...
Linux kernel'inin 'drivers/nfc/microread/mei' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2013 Intel Corporation. All rights reserved. * * HCI based Driver for Inside Secure microread NFC Chip */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/nfc.h> #include <net/nfc/ll...
Linux işletim sistemi çekirdeği için 'drivers/nfc/microread/microread' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2011 - 2012 Intel Corporation. All rights reserved. */ #ifndef __LOCAL_MICROREAD_H_ #define __LOCAL_MICROREAD_H_ #include <net/nfc/hci.h> #define DRIVER_DESC "NFC driver for microread" int microread_probe(void *phy_id, const struct nfc_phy_o...
Linux kernel'inin 'drivers/nfc/microread/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * HCI based Driver for Inside Secure microread NFC Chip - i2c layer * * Copyright (C) 2013 Intel Corporation. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/i2c.h> #include <linux/delay.h> #include <lin...
Linux kernel'inin 'drivers/nfc/nfcmrvl/fw_dnld' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC driver: Firmware downloader * * Copyright (C) 2015, Marvell International Ltd. */ #include <linux/module.h> #include <linux/unaligned.h> #include <linux/firmware.h> #include <linux/nfc.h> #include <net/nfc/nci.h> #include <net/nfc/nci_core.h> #include ...
Linux kernel'inin 'drivers/nfc/nfcmrvl/uart' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC-over-UART driver * * Copyright (C) 2015, Marvell International Ltd. */ #include <linux/delay.h> #include <linux/device.h> #include <linux/err.h> #include <linux/gpio/consumer.h> #include <linux/module.h> #include <linux/of.h> #include <linux/printk.h> ...
Linux kernel'inin 'drivers/nfc/nfcmrvl/main' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC driver: major functions * * Copyright (C) 2014-2015 Marvell International Ltd. */ #include <linux/module.h> #include <linux/gpio/consumer.h> #include <linux/delay.h> #include <linux/of.h> #include <linux/nfc.h> #include <net/nfc/nci.h> #include <net/nf...
Linux işletim sistemi çekirdeği için 'drivers/nfc/nfcmrvl/nfcmrvl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Marvell NFC driver * * Copyright (C) 2014-2015, Marvell International Ltd. */ #ifndef _NFCMRVL_H_ #define _NFCMRVL_H_ #include "fw_dnld.h" struct gpio_desc; /* Define private flags: */ #define NFCMRVL_NCI_RUNNING 1 #define NFCMRVL_PHY_ERROR 2 #define NF...
Linux kernel'inin 'drivers/nfc/nfcmrvl/spi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC-over-SPI driver: SPI interface related functions * * Copyright (C) 2015, Marvell International Ltd. */ #include <linux/module.h> #include <linux/interrupt.h> #include <linux/nfc.h> #include <linux/of_irq.h> #include <net/nfc/nci.h> #include <net/nfc/nc...
Linux kernel'inin 'drivers/nfc/nfcmrvl/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC-over-I2C driver: I2C interface related functions * * Copyright (C) 2015, Marvell International Ltd. */ #include <linux/module.h> #include <linux/interrupt.h> #include <linux/i2c.h> #include <linux/nfc.h> #include <linux/delay.h> #include <linux/of_irq....
Linux işletim sistemi çekirdeği için 'drivers/nfc/nfcmrvl/fw_dnld' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Marvell NFC driver: Firmware downloader * * Copyright (C) 2015, Marvell International Ltd. */ #ifndef __NFCMRVL_FW_DNLD_H__ #define __NFCMRVL_FW_DNLD_H__ #include <linux/workqueue.h> #define NFCMRVL_FW_MAGIC 0x88888888 #define NCI_OP_PROP_BOOT_CMD 0x3A #d...
Linux kernel'inin 'drivers/nfc/nfcmrvl/usb' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Marvell NFC-over-USB driver: USB interface related functions * * Copyright (C) 2014, Marvell International Ltd. */ #include <linux/module.h> #include <linux/usb.h> #include <linux/nfc.h> #include <net/nfc/nci.h> #include <net/nfc/nci_core.h> #include "nfcmrvl.h" ...
Linux işletim sistemi çekirdeği için 'drivers/nfc/nxp-nci/nxp-nci' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014 NXP Semiconductors All rights reserved. * * Authors: Clément Perrochaud <clement.perrochaud@nxp.com> * * Derived from PN544 device driver: * Copyright (C) 2012 Intel Corporation. All rights reserved. */ #ifndef __LOCAL_NXP_NCI_H_ #define...
Linux kernel'inin 'drivers/nfc/nxp-nci/firmware' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Generic driver for NXP NCI NFC chips * * Copyright (C) 2014 NXP Semiconductors All rights reserved. * * Author: Clément Perrochaud <clement.perrochaud@nxp.com> * * Derived from PN544 device driver: * Copyright (C) 2012 Intel Corporation. All rights reserved....
Linux kernel'inin 'drivers/nfc/nxp-nci/core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Generic driver for NXP NCI NFC chips * * Copyright (C) 2014 NXP Semiconductors All rights reserved. * * Authors: Clément Perrochaud <clement.perrochaud@nxp.com> * * Derived from PN544 device driver: * Copyright (C) 2012 Intel Corporation. All rights reserved...
Linux kernel'inin 'drivers/nfc/nxp-nci/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * I2C link layer for the NXP NCI driver * * Copyright (C) 2014 NXP Semiconductors All rights reserved. * Copyright (C) 2012-2015 Intel Corporation. All rights reserved. * * Authors: Clément Perrochaud <clement.perrochaud@nxp.com> * Authors: Oleg Zhurakivskyy <o...
Linux kernel'inin 'drivers/nfc/st21nfca/se' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #include <net/nfc/hci.h> #include "st21nfca.h" #define ST21NFCA_EVT_UICC_ACTIVATE 0x10 #define ST21NFCA_EVT_UICC_DEACTIVATE 0x13 #define ST21NFCA_EVT_SE_HARD_RESET 0x20 #define ST21NFCA_EVT_SE_...
Linux kernel'inin 'drivers/nfc/st21nfca/core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * HCI based Driver for STMicroelectronics NFC Chip * * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #include <linux/module.h> #include <linux/nfc.h> #include <net/nfc/hci.h> #include "st21nfca.h" #define DRIVER_DESC "HCI NFC driver for ST21N...
Linux kernel'inin 'drivers/nfc/st21nfca/dep' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #include <net/nfc/hci.h> #include "st21nfca.h" #define ST21NFCA_NFCIP1_INITIATOR 0x00 #define ST21NFCA_NFCIP1_REQ 0xd4 #define ST21NFCA_NFCIP1_RES 0xd5 #define ST21NFCA_NFCIP1_ATR_REQ 0x00 #define...
Linux kernel'inin 'drivers/nfc/st21nfca/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * I2C Link Layer for ST21NFCA HCI based Driver * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/crc-ccitt.h> #include <linux/module.h> #include <linux/i2c.h> #include <linux/gpio/consum...
Linux kernel'inin 'drivers/nfc/st21nfca/vendor_cmds' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Proprietary commands extension for STMicroelectronics NFC Chip * * Copyright (C) 2014-2015 STMicroelectronics SAS. All rights reserved. */ #include <net/genetlink.h> #include <linux/module.h> #include <linux/nfc.h> #include <net/nfc/hci.h> #include <net/nfc/llc.h...
Linux işletim sistemi çekirdeği için 'drivers/nfc/st21nfca/st21nfca' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2014 STMicroelectronics SAS. All rights reserved. */ #ifndef __LOCAL_ST21NFCA_H_ #define __LOCAL_ST21NFCA_H_ #include <net/nfc/hci.h> #include <linux/skbuff.h> #include <linux/workqueue.h> #define HCI_MODE 0 /* framing in HCI mode */ #define ST2...
Linux işletim sistemi çekirdeği için 'drivers/nfc/s3fwrn5/s3fwrn5' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #ifndef __LOCAL_S3FWRN5_H_ #define __LOCAL_S3FWRN5_H_ #include <linux/nfc.h> #include <net/nfc/nci_core.h> #include "fir...
Linux kernel'inin 'drivers/nfc/s3fwrn5/uart' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * UART Link Layer for S3FWRN82 NCI based Driver * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> * Copyright (C) 2020 Samsung Electronics * Bongsu Jeon <bongsu.jeon@samsung.com> */ #include <linux/device.h> #include <linux/kernel.h>...
Linux kernel'inin 'drivers/nfc/s3fwrn5/phy_common' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Link Layer for Samsung S3FWRN5 NCI based Driver * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> * Copyright (C) 2020 Samsung Electronics * Bongsu Jeon <bongsu.jeon@samsung.com> */ #include <linux/delay.h> #include <linux/...
Linux kernel'inin 'drivers/nfc/s3fwrn5/nci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #include <linux/completion.h> #include <linux/firmware.h> #include "s3fwrn5.h" #include "nci.h" static int s3fwrn5_nci_prop_...
Linux işletim sistemi çekirdeği için 'drivers/nfc/s3fwrn5/phy_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later * * Link Layer for Samsung S3FWRN5 NCI based Driver * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> * Copyright (C) 2020 Samsung Electronics * Bongsu Jeon <bongsu.jeon@samsung.com> */ #ifndef __NFC_S3FWRN5_PHY_COMMON_H #defin...
Linux işletim sistemi çekirdeği için 'drivers/nfc/s3fwrn5/firmware' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #ifndef __LOCAL_S3FWRN5_FIRMWARE_H_ #define __LOCAL_S3FWRN5_FIRMWARE_H_ /* FW Message Types */ #define S3FWRN5_FW_MSG_CMD ...
Linux kernel'inin 'drivers/nfc/s3fwrn5/firmware' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #include <linux/completion.h> #include <linux/firmware.h> #include <crypto/sha1.h> #include "s3fwrn5.h" #include "firmware.h"...
Linux kernel'inin 'drivers/nfc/s3fwrn5/core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #include <linux/module.h> #include <net/nfc/nci_core.h> #include "s3fwrn5.h" #include "firmware.h" #include "nci.h" #define ...
Linux kernel'inin 'drivers/nfc/s3fwrn5/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * I2C Link Layer for Samsung S3FWRN5 NCI based Driver * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #include <linux/clk.h> #include <linux/i2c.h> #include <linux/gpio/consumer.h> #include <linux/delay.h> #include <linux/...
Linux işletim sistemi çekirdeği için 'drivers/nfc/s3fwrn5/nci' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * NCI based driver for Samsung S3FWRN5 NFC chip * * Copyright (C) 2015 Samsung Electronics * Robert Baldyga <r.baldyga@samsung.com> */ #ifndef __LOCAL_S3FWRN5_NCI_H_ #define __LOCAL_S3FWRN5_NCI_H_ #include "s3fwrn5.h" #define NCI_PROP_SET_RFREG 0x22 struc...
Linux kernel'inin 'drivers/nfc/pn544/mei' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2013 Intel Corporation. All rights reserved. * * HCI based Driver for NXP pn544 NFC Chip */ #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/nfc.h> #include <net/nfc/hci.h> #include <net/nfc/llc.h> #include "../mei_phy.h" #in...
Linux kernel'inin 'drivers/nfc/pn544/pn544' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * HCI based Driver for NXP PN544 NFC Chip * * Copyright (C) 2012 Intel Corporation. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/delay.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/nfc.h> #include <net...
Linux kernel'inin 'drivers/nfc/pn544/i2c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * I2C Link Layer for PN544 HCI based Driver * * Copyright (C) 2012 Intel Corporation. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/crc-ccitt.h> #include <linux/module.h> #include <linux/i2c.h> #include <linux/acpi.h> #include...
Linux işletim sistemi çekirdeği için 'drivers/nfc/pn544/pn544' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (C) 2011 - 2012 Intel Corporation. All rights reserved. */ #ifndef __LOCAL_PN544_H_ #define __LOCAL_PN544_H_ #include <net/nfc/hci.h> #define DRIVER_DESC "HCI NFC driver for PN544" #define PN544_HCI_MODE 0 #define PN544_FW_MODE 1 typedef int (*...
Linux kernel'inin 'drivers/pcmcia/ds' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ds.c -- 16-bit PCMCIA core support * * The initial developer of the original code is David A. Hinds * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds * are Copyright (C) 1999 David A. Hinds. All Rights Reserved. * * (C) 1999 David A. Hinds...
Linux kernel'inin 'drivers/pcmcia/sa1111_jornada720' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * drivers/pcmcia/sa1100_jornada720.c * * Jornada720 PCMCIA specific routines * */ #include <linux/module.h> #include <linux/device.h> #include <linux/errno.h> #include <linux/gpio/consumer.h> #include <linux/init.h> #include <linux/io.h> #include <mach/hardware.h> #incl...
Linux kernel'inin 'drivers/pcmcia/bcm63xx_pcmcia' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2008 Maxime Bizon <mbizon@freebox.fr> */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/ioport.h...
Linux kernel'inin 'drivers/pcmcia/pxa2xx_base' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /*====================================================================== Device driver for the PCMCIA control functionality of PXA2xx microprocessors. (c) Ian Molton (spyro@f2s.com) 2003 (c) Stefan Eletzhofer (stefan.eletzhofer@inquant.de) 2003,4 derived...
Linux kernel'inin 'drivers/pcmcia/cistpl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * cistpl.c -- 16-bit PCMCIA Card Information Structure parser * * The initial developer of the original code is David A. Hinds * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds * are Copyright (C) 1999 David A. Hinds. All Rights Reserved. * *...
Linux işletim sistemi çekirdeği için 'drivers/pcmcia/ti113x' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * ti113x.h 1.16 1999/10/25 20:03:34 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License * at http://www.mozilla.org/MPL/ * * Software distributed und...
Linux işletim sistemi çekirdeği için 'drivers/pcmcia/yenta_socket' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __YENTA_H #define __YENTA_H #include <asm/io.h> #define CB_SOCKET_EVENT 0x00 #define CB_CSTSEVENT 0x00000001 /* Card status event */ #define CB_CD1EVENT 0x00000002 /* Card detect 1 change event */ #define CB_CD2EVENT 0x00000004 /* Card detect 2 change e...
Linux işletim sistemi çekirdeği için 'drivers/pcmcia/cirrus' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * cirrus.h 1.4 1999/10/25 20:03:34 * * The contents of this file are subject to the Mozilla Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License * at http://www.mozilla.org/MPL/ * * Software distributed unde...
Linux kernel'inin 'drivers/pcmcia/pcmcia_cis' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * PCMCIA high-level CIS access functions * * The initial developer of the original code is David A. Hinds * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds * are Copyright (C) 1999 David A. Hinds. All Rights Reserved. * * Copyright (C) 1999 ...
Linux kernel'inin 'drivers/pcmcia/rsrc_mgr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * rsrc_mgr.c -- Resource management routines and/or wrappers * * The initial developer of the original code is David A. Hinds * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds * are Copyright (C) 1999 David A. Hinds. All Rights Reserved. * * ...