Home
last modified time | relevance | path

Searched refs:sta (Results 1 – 11 of 11) sorted by relevance

/linux-4.19.296/drivers/i2c/algos/
Di2c-algo-pca.c79 int sta = pca_get_con(adap); in pca_start() local
81 sta |= I2C_PCA_CON_STA; in pca_start()
82 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI); in pca_start()
83 pca_set_con(adap, sta); in pca_start()
94 int sta = pca_get_con(adap); in pca_repeated_start() local
96 sta |= I2C_PCA_CON_STA; in pca_repeated_start()
97 sta &= ~(I2C_PCA_CON_STO|I2C_PCA_CON_SI); in pca_repeated_start()
98 pca_set_con(adap, sta); in pca_repeated_start()
113 int sta = pca_get_con(adap); in pca_stop() local
115 sta |= I2C_PCA_CON_STO; in pca_stop()
[all …]
/linux-4.19.296/include/net/
Dmac80211.h430 struct ieee80211_sta *sta; member
987 struct ieee80211_sta *sta; member
1909 struct ieee80211_sta *sta; member
1926 struct ieee80211_sta *sta; member
2371 struct ieee80211_sta *sta; member
2950 struct ieee80211_sta *sta; member
3583 int (*set_tim)(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
3586 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
3591 struct ieee80211_sta *sta,
3621 struct ieee80211_sta *sta);
[all …]
/linux-4.19.296/drivers/i2c/busses/
Di2c-st.c374 u32 sta; in st_i2c_wait_free_bus() local
378 sta = readl_relaxed(i2c_dev->base + SSC_STA); in st_i2c_wait_free_bus()
379 if (!(sta & SSC_STA_BUSY)) in st_i2c_wait_free_bus()
385 dev_err(i2c_dev->dev, "bus not free (status = 0x%08x)\n", sta); in st_i2c_wait_free_bus()
418 u32 tx_fstat, sta; in st_i2c_wr_fill_tx_fifo() local
421 sta = readl_relaxed(i2c_dev->base + SSC_STA); in st_i2c_wr_fill_tx_fifo()
422 if (sta & SSC_STA_TX_FIFO_FULL) in st_i2c_wr_fill_tx_fifo()
448 u32 tx_fstat, sta; in st_i2c_rd_fill_tx_fifo() local
451 sta = readl_relaxed(i2c_dev->base + SSC_STA); in st_i2c_rd_fill_tx_fifo()
452 if (sta & SSC_STA_TX_FIFO_FULL) in st_i2c_rd_fill_tx_fifo()
[all …]
/linux-4.19.296/drivers/pci/hotplug/
Dacpiphp_glue.c602 unsigned long long sta = 0; in get_slot_status() local
611 "_STA", NULL, &sta); in get_slot_status()
612 if (ACPI_SUCCESS(status) && sta) in get_slot_status()
618 sta = ACPI_STA_ALL; in get_slot_status()
624 if (!sta) { in get_slot_status()
632 sta = ACPI_STA_ALL; in get_slot_status()
636 return (unsigned int)sta; in get_slot_status()
639 static inline bool device_status_valid(unsigned int sta) in device_status_valid() argument
647 return (sta & mask) == mask; in device_status_valid()
662 unsigned long long sta; in trim_stale_devices() local
[all …]
/linux-4.19.296/drivers/edac/
Docteon_edac-pci.c48 if (cfg01.s.sta) { in octeon_pci_poll()
50 cfg01.s.sta = 1; /* Reset */ in octeon_pci_poll()
/linux-4.19.296/include/linux/mailbox/
Dmtk-cmdq-mailbox.h56 enum cmdq_cb_status sta; member
/linux-4.19.296/drivers/xen/
Dxen-acpi-cpuhotplug.c131 unsigned long long sta = 0; in is_processor_present() local
134 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); in is_processor_present()
136 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT)) in is_processor_present()
/linux-4.19.296/include/acpi/
Dacpi_bus.h461 static inline void acpi_set_device_status(struct acpi_device *adev, u32 sta) in acpi_set_device_status() argument
463 *((u32 *)&adev->status) = sta; in acpi_set_device_status()
512 unsigned long long *sta);
/linux-4.19.296/drivers/gpio/
Dgpio-bcm-kona.c450 unsigned long sta; in bcm_kona_gpio_irq_handler() local
464 while ((sta = readl(reg_base + GPIO_INT_STATUS(bank_id)) & in bcm_kona_gpio_irq_handler()
466 for_each_set_bit(bit, &sta, 32) { in bcm_kona_gpio_irq_handler()
Dgpio-tegra.c369 unsigned long sta; in tegra_gpio_irq_handler() local
378 sta = tegra_gpio_readl(tgi, GPIO_INT_STA(tgi, gpio)) & in tegra_gpio_irq_handler()
382 for_each_set_bit(pin, &sta, 8) { in tegra_gpio_irq_handler()
/linux-4.19.296/drivers/pci/pcie/
Daer.c385 u16 sta; in pci_aer_clear_device_status() local
387 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &sta); in pci_aer_clear_device_status()
388 pcie_capability_write_word(dev, PCI_EXP_DEVSTA, sta); in pci_aer_clear_device_status()