diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-06-16 10:22:10 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-16 10:22:10 +0000 |
commit | dae6ee2ec2e83177a3b407486ee3291770bcbfca (patch) | |
tree | f781d7958c07f67f5a8bc32f97a4531495019b93 /packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch | |
parent | 6642ef1d18a305fba38f7089b129752aa430c886 (diff) |
ixp4xx-csr: Added patch to remove MODUE_USE_COUNT stuff
Diffstat (limited to 'packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch')
-rw-r--r-- | packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch b/packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch new file mode 100644 index 0000000000..0fc2c5270e --- /dev/null +++ b/packages/ixp4xx/ixp4xx-csr-2.1.1/module-use-count.patch @@ -0,0 +1,24 @@ + src/oslinux/IxLinuxInit.c | 3 --- + 1 files changed, 3 deletions(-) + +Index: ixp400_xscale_sw/src/oslinux/IxLinuxInit.c +=================================================================== +--- ixp400_xscale_sw.orig/src/oslinux/IxLinuxInit.c ++++ ixp400_xscale_sw/src/oslinux/IxLinuxInit.c +@@ -164,7 +164,6 @@ + return -EEXIST; + } + +- MOD_INC_USE_COUNT; /* Increment use count to prevent premature rmmod-ing */ + ixNpeDlSegmentedListHead = NULL; /* Reset linked list which keeps track of Microcode fragments */ + ixNpeDlSegmentedListTail = NULL; + ixNpeDlTotalBytesReadIn = 0; +@@ -229,8 +228,6 @@ + kfree (temp); + } + +- MOD_DEC_USE_COUNT; +- + return 0; + } + |