Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
6f731497
Commit
6f731497
authored
14 years ago
by
Florian Fainelli
Browse files
Options
Downloads
Patches
Plain Diff
make acx available to PCI platforms as well (#7174)
SVN-Revision: 21313
parent
262640cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/acx/Makefile
+1
-1
1 addition, 1 deletion
package/acx/Makefile
package/acx/patches/006-netdev_ops.patch
+37
-10
37 additions, 10 deletions
package/acx/patches/006-netdev_ops.patch
with
38 additions
and
11 deletions
package/acx/Makefile
+
1
−
1
View file @
6f731497
...
...
@@ -25,7 +25,7 @@ include $(INCLUDE_DIR)/package.mk
define
KernelPackage/acx
TITLE
:=
Driver
for
TI ACX1xx chipset
DEPENDS
:=
@LINUX_2_6 @TARGET_ar7 +wireless-tools
DEPENDS
:=
@LINUX_2_6 @
PCI_SUPPORT||
TARGET_ar7 +wireless-tools
URL
:=
http://acx100.sourceforge.net/
SUBMENU
:=
Wireless Drivers
FILES
:=
$(
PKG_BUILD_DIR
)
/acx.
$(
LINUX_KMOD_SUFFIX
)
...
...
This diff is collapsed.
Click to expand it.
package/acx/patches/006-netdev_ops.patch
+
37
−
10
View file @
6f731497
--- a
/pci.c
+++ b/pci.c
@@ -4135,6 +4135,18 @@
static struct vlynq_device_id acx_vlynq_
{ 0, 0, 0 },
};
Index: acx-20080210
/pci.c
===================================================================
--- acx-20080210.orig/pci.c 2010-05-02 21:37:00.000000000 +0200
+++ acx-20080210/pci.c 2010-05-02 21:48:22.000000000 +0200
@@ -1437,6 +1437,18 @@
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)
static void dummy_netdev_init(struct net_device *ndev) {}
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30)
+static const struct net_device_ops acx_netdev_ops = {
+ .ndo_open = &acxpci_e_open,
+ .ndo_stop = &acxpci_e_close,
...
...
@@ -16,14 +18,39 @@
+};
+#endif
+
static __devinit int vlynq_probe(struct vlynq_device *vdev,
struct vlynq
_device_id *id)
#ifdef CONFIG_PCI
static int __devinit acxpci_e_probe(struct pci_dev *pdev, const struct pci
_device_id *id)
{
@@ -4191,17 +4203,24 @@
static __devinit int vlynq_probe(struct
@@ -1547,17 +1559,21 @@
}
ether_setup(ndev);
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30))
ndev->open = &acxpci_e_open;
ndev->stop = &acxpci_e_close;
ndev->hard_start_xmit = &acx_i_start_xmit;
ndev->get_stats = &acx_e_get_stats;
+ ndev->set_multicast_list = &acxpci_i_set_multicast_list;
+ ndev->tx_timeout = &acxpci_i_tx_timeout;
+ ndev->change_mtu = &acx_e_change_mtu;
+#else
+ ndev->netdev_ops = &acx_netdev_ops;
+#endif
#if IW_HANDLER_VERSION <= 5
ndev->get_wireless_stats = &acx_e_get_wireless_stats;
#endif
ndev->wireless_handlers = (struct iw_handler_def *)&acx_ioctl_handler_def;
- ndev->set_multicast_list = &acxpci_i_set_multicast_list;
- ndev->tx_timeout = &acxpci_i_tx_timeout;
- ndev->change_mtu = &acx_e_change_mtu;
ndev->watchdog_timeo = 4 * HZ;
ndev->irq = pdev->irq;
ndev->base_addr = pci_resource_start(pdev, 0);
@@ -4191,17 +4207,24 @@
goto fail_alloc_netdev;
}
ether_setup(ndev);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,3
1
)
+#if
(
LINUX_VERSION_CODE < KERNEL_VERSION(2,6,3
0
)
ndev->open = &acxpci_e_open;
ndev->stop = &acxpci_e_close;
ndev->hard_start_xmit = &acx_i_start_xmit;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment