net: aquantia: Add const qualifiers for hardware ops tables
[linux-2.6-block.git] / drivers / net / ethernet / aquantia / atlantic / aq_pci_func.h
CommitLineData
a4d36e20
DV
1/*
2 * aQuantia Corporation Network Driver
3 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 */
9
10/* File aq_pci_func.h: Declaration of PCI functions. */
11
12#ifndef AQ_PCI_FUNC_H
13#define AQ_PCI_FUNC_H
14
15#include "aq_common.h"
1a713f87 16#include "aq_nic.h"
a4d36e20 17
4cbc9f92 18struct aq_pci_func_s *aq_pci_func_alloc(const struct aq_hw_ops *hw_ops,
a4d36e20
DV
19 struct pci_dev *pdev,
20 const struct net_device_ops *ndev_ops,
21 const struct ethtool_ops *eth_ops);
22int aq_pci_func_init(struct aq_pci_func_s *self);
23int aq_pci_func_alloc_irq(struct aq_pci_func_s *self, unsigned int i,
24 char *name, void *aq_vec,
25 cpumask_t *affinity_mask);
26void aq_pci_func_free_irqs(struct aq_pci_func_s *self);
27int aq_pci_func_start(struct aq_pci_func_s *self);
28void __iomem *aq_pci_func_get_mmio(struct aq_pci_func_s *self);
29unsigned int aq_pci_func_get_irq_type(struct aq_pci_func_s *self);
30void aq_pci_func_deinit(struct aq_pci_func_s *self);
31void aq_pci_func_free(struct aq_pci_func_s *self);
32int aq_pci_func_change_pm_state(struct aq_pci_func_s *self,
33 pm_message_t *pm_msg);
34
35#endif /* AQ_PCI_FUNC_H */