summaryrefslogtreecommitdiff
path: root/drivers/net
AgeCommit message (Collapse)Author
2013-04-24net: wireless: bcmdhd: Enable flag QUEUE_BW for RBENitin Bindal
Enable QUEUE_BW to support Realtime Bandwidth estimation for user applications. Bug 1190552 Change-Id: I8af0befffb34da0bbd22d3a36ec0df377d1f3c50 Signed-off-by: Nitin Bindal <nbindal@nvidia.com> Reviewed-on: http://git-master/r/217323 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit
2013-04-16bcmdhd: Add 300 msec delay during chip power-offNitin Bindal
Add 300 msec delay during power-off to complete leftover commands. Bug 1267427 Change-Id: Id5a8a514bc64cd4d6717c71afb35e3dc44b14b62 Signed-off-by: Nitin Bindal <nbindal@nvidia.com> Reviewed-on: http://git-master/r/218243 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-04-16bcmdhd: use firmware defined ampdu value on driver startbibhayr
Bug 1258426 Bug 1262099 Change-Id: I48d6139ae7d36970233501ca284952be19be8039 Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/217660 Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Matt Wagner <mwagner@nvidia.com>
2013-04-16Revert "bcmdhd: enable mpc during p2p search/listen"Narayan Reddy
since we reverted to the old branch of BRCM firmware, this change is no longer needed. Bug 1264805 This reverts commit dbfe572a3a2be172aab176718d84fc8b5e86f6ba. Change-Id: Id3826b16da890afe8aaee56ed6e1b0d2143aac70 Signed-off-by: Narayan Reddy <narayanr@nvidia.com> Reviewed-on: http://git-master/r/219175 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-04-11bcmdhd: enable mpc during p2p search/listenNitin Bindal
mpc (master power control) is related to power consumption. This change enables mpc during p2p search and listen. Bug 1264805 Change-Id: If1043c8a34a43a22950caffe240d8f4208e2fff1 Signed-off-by: Nitin Bindal <nbindal@nvidia.com> Reviewed-on: http://git-master/r/218224 GVS: Gerrit_Virtual_Submit Reviewed-by: Narayan Reddy <narayanr@nvidia.com> Tested-by: Narayan Reddy <narayanr@nvidia.com> Reviewed-by: Matt Wagner <mwagner@nvidia.com>
2013-04-07net: wireless: bcmdhd update 1.28.28.1 from broadcomOm Prakash Singh
Bug 1247033 Change-Id: Ie2f90bdf5bc582c04d2062d60a368e00b8e68b00 Signed-off-by: Om Prakash Singh <omp@nvidia.com> Reviewed-on: http://git-master/r/211656 Reviewed-by: Nitin Bindal <nbindal@nvidia.com> Tested-by: Nitin Bindal <nbindal@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Matt Wagner <mwagner@nvidia.com>
2013-04-01net: wireless: bcmdhd: configure driver for low latencyOm Prakash Singh
Bug 1258426 Bug 1262099 Change-Id: I0a2fd3a1a7306e8c762a96c47582a4511cd5249a Signed-off-by: Om Prakash Singh <omp@nvidia.com> Reviewed-on: http://git-master/r/214422 Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Tested-by: Bibhay Ranjan <bibhayr@nvidia.com> Reviewed-by: Kyeong Kim <kyeongk@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-03-28net:wireless:bcmdhd: roam_off, disable block ack for UP5 and UP7Kyeong Baek Kim
Bug 1258426 Change-Id: I288a0e1dd59c0fb1a8d4d96b90dee8003a1f34a9 Signed-off-by: Kyeong Baek Kim <kyeongk@nvidia.com> Reviewed-on: http://git-master/r/212260 (cherry picked from commit fcfeafb1ed0c682129b920aa4bee8da0648a00b6) Reviewed-on: http://git-master/r/213363 GVS: Gerrit_Virtual_Submit Reviewed-by: Steve Lin <stlin@nvidia.com>
2013-03-08bcmdhd: use kthread_run instead of kernel_threadNitin Bindal
kernel_thread is deprecated and sometimes it fails. Bug 1242544 Change-Id: I3751c12aad2661998dcbc1ae1e305f5f2ecf355e Signed-off-by: Nitin Bindal <nbindal@nvidia.com> Reviewed-on: http://git-master/r/206996 Reviewed-by: Ajay Nandakumar M <anandakumarm@nvidia.com> Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-02-21bcmdhd: fix race condition between p2p interface removal and disconnectNarayan Reddy
When supplicant disconnect P2P link, it calls wl_cfg80211_disconnect and removes p2p interface(netdevice). There can be race condition since supplicant remove interface without waiting for disconnected event. In most cases, disconnection event is processed before deleting interface. But if interface is removed before disconnection event is handled, it make crash. wait_for_completion_timeout() and complete() api takes care of above, but there is a problem, since signal by complete() is accumulative. Sometimes, previous disconnect event calls complete() and it unblock next wait_for_completion_timeout() right away. Bug 1237588 Change-Id: I2937a55b2aced668e0c3f5c2285aad0c7a7cc0bf Signed-off-by: Narayan Reddy <narayanr@nvidia.com> Reviewed-on: http://git-master/r/202882 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: Gerrit_Virtual_Submit
2013-02-18cdc_ncm: fix TCP window scaling issue for NCM driverSteve Lin
TCP network stack uses skb->truesize as hint to grow TCP window size. However, the NCM driver uses skb_clone to push the ethernet packet to the network stack. The skb->truesize is actually the memory allocated for the whole transfer block, not the true packet size with overhead. tcp_grow_window function doesn't handle this case properly so the receiver window will not grow. This patch is to update the skb->truesize in the cdc_ncm_rx_fixup function so the TCP stack can use it to grow the window size as expected. Bug 1207244 Bug 1235981 Change-Id: I7c48eb65e7f991d7eb0f2ef14c515134b9180ea4 Signed-off-by: Steve Lin <stlin@nvidia.com> Reviewed-on: http://git-master/r/200895 Reviewed-by: David Norman <dnorman@nvidia.com> Reviewed-by: Rick Song <ricks@nvidia.com>
2013-02-18drivers: net: wireless: bcmdhd: fix WPS association race conditionNarayan Reddy
When association failed, supplicant always sends re-association rather than assoc. With this pattern, there is a potential problem from wpa-supplicant with respect to WPS association after provisioning. When supplicant requests disassociate, the state of supplicant is changed to DISCONNECTED by disconnect event from the cfg80211(driver) layer in normal case. However, in this case (post provisioning assoc), supplicant requests disassociate and send locally generated event to itself and changes state to DISCONNECTED. Therefore, sometimes the association request is coming to cfg80211/driver while driver is processing disassociating (before link down event come from the f/w). This conflict between disassociation processing and association request make re-association request in the f/w and resulted in association failure. To avoid this conflict, supplicant should wait for the disconnected event from the driver. Thus modified driver to hold association request until disassociation is finished. In most case, link event comes from f/w within 50 ms. Bug 1232700 Change-Id: I7ac9b6edc3675dabc04131d562bb839187e73ad3 Signed-off-by: Narayan Reddy <narayanr@nvidia.com> Reviewed-on: http://git-master/r/201116 Reviewed-by: Kyeong Kim <kyeongk@nvidia.com> Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
2013-02-07net: wireless: bcm4335: fix Kconfig and MakefileNagarjuna Kristam
Fix Kconfig and Makefile to build bcm4335 independently Bug 1216788 Bug 1159327 Change-Id: Id52ac1bb2615075b30672536ac01e1d8d347c112 Signed-off-by: Nagarjuna Kristam <nkristam@nvidia.com> Reviewed-on: http://git-master/r/193396 (cherry picked from commit e9b14a6f7ec92e49cb626d32aba5aa1526a256d2) Reviewed-on: http://git-master/r/191209 Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-02-07net: wireless: add bcm4335 driverNagarjuna Kristam
Bug 1216788 bug 1159327 Change-Id: Ie1eff46ecd31e65c14aebba69d1bfc2a3ae4cad1 Signed-off-by: Nagarjuna Kristam <nkristam@nvidia.com> Reviewed-on: http://git-master/r/193395 (cherry picked from commit c4497ca4faa61225101f6889757a2f2924561754) Reviewed-on: http://git-master/r/191206 Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-01-16net: wireless: bcmdhd: remove the dhd_chipup_semWei Ni
Remove the unnecessary semaphore dhd_chipup_sem. This semaphore was not initialized, it will cause the crash when calling it. And it was called only one time, so it's a unnecessary semaphore. Remove it. bug 1179891 Reviewed-on: http://git-master/r/171794 (cherry picked from commit e849d4d9dfdb17681016f8a5bba9758376a20d6e) Change-Id: I30e0d1fa1216f2c23ed638af4daa0eb4a72ff4a4 Signed-off-by: Wei Ni <wni@nvidia.com> Reviewed-on: http://git-master/r/173306 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Rakesh Kumar <krakesh@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2013-01-07bcmdhd: Selectively do not claim devicesMursalin Akon
Allow a way to selectively not claim devices through Kconfig options. Bug 1204883 Change-Id: I9fc92f33960ba0154d113a2748d45ca9aced7078 Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/172873 Reviewed-by: Allen Martin <amartin@nvidia.com>
2013-01-02net: usb: raw_ip: max_intfs to be non-writableJC Kuo
max_intfs is a varible which determines loop counts in driver functions at runtime. Userspace could modify its default value at module load time but it shouldn't be changed at runtime. Bug 1175543 Change-Id: Id8e8055711288f900e5cffb704a2cf823dd97a34 Signed-off-by: JC Kuo <jckuo@nvidia.com> Reviewed-on: http://git-master/r/187794 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-21bcmdhd: do not use SET_NETDEV_DEV for p2p (HACK)Mursalin Akon
With SET_NETDEV_DEV, network manager starts using all the p2p* interfaces. Without SET_NETDEV_DEV, network manager is not aware of these virtual interfaces. Bug 1188451 Change-Id: I3e8be1d20d92cefc0d3debea09fdca445652571a Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/172440 Reviewed-by: Rohan Somvanshi <rsomvanshi@nvidia.com> Tested-by: Rohan Somvanshi <rsomvanshi@nvidia.com>
2012-12-20bcmdhd: use debug instead of errorMursalin Akon
To print P2P MAC address use debug (WL_DBG), instead of error (WL_ERR). Bug 1179879 Change-Id: I5669c8054497c669105548232b522ae540121810 Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/167892 (cherry picked from commit 30193205872e13fcb0b84cb0aac131e8ee8b2adc) Reviewed-on: http://git-master/r/172851 Reviewed-by: Simone Willett <swillett@nvidia.com> Tested-by: Simone Willett <swillett@nvidia.com>
2012-12-20net: wireless: bcmdhd: do not allow race conditionMursalin Akon
Module "init" turns off wifi chip after registering the network interface. The chip is turned on at "open". As "open" is allowed as soon as registration is complete, the chip turning on and off becomaes a race condition. We need to enforce a strict ordering between these two operations. Bug 1192094 Change-Id: I17e7da0252e1dd5c335722f98e9b54b0585b9690 Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/172442 Reviewed-by: Simone Willett <swillett@nvidia.com> Tested-by: Simone Willett <swillett@nvidia.com>
2012-12-20bcmdhd: Remove BCMDHD_CSCAN_ENABLE KconfigMursalin Akon
Reference to this Kconfig option does not exist anywhere. Hence, remove it. Bug 1188451 Bug 1180883 Bug 1192094 Change-Id: Icb9a34dfaf474b87ff0c491bb54f20770016087b Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/172441 Reviewed-by: Simone Willett <swillett@nvidia.com> Tested-by: Simone Willett <swillett@nvidia.com>
2012-12-19net: wireless: bcmdhd: Increase PNO wakelock to 7 secDmitry Shmidt
Change-Id: Ib4d51cb3ee1c117c645dda663e08a1ee5954c81c Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Fix dhd_txcomplete() dead lockFranky (Zhenhui) Lin
For TX packet dhd_prot_hdrpull does nothing other than pull the prot header from the skb. Use a NULL ifdix pointer to indicate a handling of tx packet and skip most of the header parsing routine - we don't need it for TX packet and we can skip extra unnecessary PROP_TXSTATUS parsing. It will resloved dead lock case because we just exit dhd_prot_hdrpull for TX path. Change-Id: Ic41e1c549036baeb0fabfb0be4b8331a4bf60682 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Update wireless stack pm modeDmitry Shmidt
Change-Id: Iadf400f113884001894dca7cf098f971190765d1 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Avoid suspend on watchdogDmitry Shmidt
Change-Id: Ic41a8f369a2ee8b2a0084e6a1cbf6b454ff53353 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Fix host reodering and CRC error handlingDmitry Shmidt
Bug: 7389187 Change-Id: I3c4ed28a20de527b91fd1ef9ae51c59bab276b85 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Fix compilation without SUPPORT_PM2_ONLYDmitry Shmidt
Change-Id: I9a95a81ec713824b3d6bfba86f62e420523ce0e4 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Turn ON SUPPORT_PM2_ONLYDmitry Shmidt
Bug: 7386287 Change-Id: I21e6c1b2691dca27434b1a77e64ca0d1314c6515 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Fix WD wakelock behaviorDmitry Shmidt
Change-Id: I7ebae2be248cbb4bc98e2b448641f65b77a320f4 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Reduce keep-alive period to 28 secDmitry Shmidt
Bug: 7386287 Change-Id: I115135e1d2cba0135c5201b95a2599dcabac0247 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19HACK: net: wireless: bcmdhd: Skip freeing skb in case of FW hangDmitry Shmidt
Bug: 7392211 Change-Id: I724ee4d4932ccda7cfd259a18b8a99f67cb0e937 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Add sync for wlfc data accessDmitry Shmidt
Change-Id: I2269eb3c26f0a14c1e01f067ac724fbfa6a4fb7b Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Skip turning chip off if not respondingDmitry Shmidt
Bug: 7324935 Change-Id: I7ae2baea80c66a39b9fc9f3a640f3a999cd193eb Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-19net: wireless: bcmdhd: Propagate FW failure to upper layerGreg Goldman
Bug: 7324935 Change-Id: I944a6da8a008ec3bcaf2f5a606e15e46eebac537 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
2012-12-18cdc_ncm: fix bind failures for Icera devicesNeil Patel
The Icera 5AN, 5AN BSD, and Nemo devices are composite devices that include a NCM interface. Therefore, the NCM match flags should have the VID, PID, Class, Subclass, and Protocol set to avoid bind() failures for non-NCM interfaces. Bug 1197415 Change-Id: If68a6ffaa4e1871c6a22ec8839806949804f502c Signed-off-by: Neil Patel <neilp@nvidia.com> Reviewed-on: http://git-master/r/170576 (cherry picked from commit 4688623777e523eacd29fdca8357c608963d26b6) Reviewed-on: http://git-master/r/171965 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-12-05net: wireless: bcmdhd: Increase scan unassoc active time to 80 msDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 7088022 Bug 1188165 Change-Id: Ie38ff2bf657a65ef3f2e0102cd9f7003f1097f5c Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 54ae97fbeb043604912c8152fc822dd422812096) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167238 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: cfg80211 fixesDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 - Add wl_cfg80211_40MHz_to_20MHz_Channel() processing - Add mac address information of the ap for debugging disconnection or roaming problem in wl_notify_connect_status - Fix hidden AP connection failure from cfg80211 WARNING in static s32 wl_update_bss_info() Change-Id: Ibafc2b766d0515c21abbba3bdfab68ff4acbebad Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit f27ac4647f2276be767407ca9e0583f69d8c749d) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167237 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: Protect dhd_wlfc_cleanup() callDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 Change-Id: Ie9322f165a603f6eb12fead6603aadd2192bcdbf Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 08beba13849316fb899bff2188989d02acb8b828) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167236 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: Skip scan params allocation in timeoutDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 Change-Id: Id4c0be0625f5f16c2f9b51267b72f3eecff500d0 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 9292ec303ddfe0f71b9e3820bd87386aa11b3c40) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167235 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: Update to version 1.28.13-1Dmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 - Fix sending unproper value for connection status to CFG80211 layer - Fix wl_scan_prep which can leave a hole in channel list if channel is a DFS channel and it is virtual interface scan - SoftAP: Fix setting DTIM interval - Fix len variable to be signed in dhdsdio_download_code_file - Add ARP white packet filter list during P2P mode - Add extra check if glom is NOT default to update bus:txglom Change-Id: Ib1fd9f77eef2fb8333fb80e749fda5b7186aa83c Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 35326a4297a7f6715bc05725b2f2c807af32f827) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167234 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: Adjust roaming treshold to -65 dBDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 Change-Id: Id5bfc9c9d6c9c211685f10346f995defd6e60f5d Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 8e17a2f829972020ebbdad35f37d34bf176fa157) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167233 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-05net: wireless: bcmdhd: Fix wldev_ioctl set parameterDmitry Shmidt
source of the commit: https://android.googlesource.com/kernel/common branch- remotes/origin/android-3.4 Bug 1188165 Change-Id: Ia977e98ac631f715c7b6c7161510e5be78082889 Signed-off-by: Dmitry Shmidt <dimitrysh@google.com> (cherry picked from commit 3ec04912dd5632cce7d60e980c6919474ee5bbec) Signed-off-by: bibhayr <bibhayr@nvidia.com> Reviewed-on: http://git-master/r/167232 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
2012-12-04cdc_ncm: Adding rmnet interface for Icera Nemo modemSteve Lin
Bug 1176649 Change-Id: I9c89b907649ac66d9e85c66e964574a2fe9d368f Signed-off-by: Steve Lin <stlin@nvidia.com> Reviewed-on: http://git-master/r/167784 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Frederic Bossy <fbossy@nvidia.com>
2012-11-26net: wireless: bcmdhd: Fix dhd_wlfc_init NULL pointerMohan T
Fix null pointer exception in dhd_wlfc_init function Bug 1176686 Reviewed-on: http://git-master/r/164533 (cherry picked from commit 0b46998c131a303e1eabdc4ba9c4b612e8008cf2) Change-Id: Ib9d775318e2164516011bbbd64d7996e57ead8fd Signed-off-by: Narayan Reddy <narayanr@nvidia.com> Signed-off-by: Vikram Kanigiri <vkanigiri@nvidia.com> Reviewed-on: http://git-master/r/164935 Reviewed-by: Rohan Somvanshi <rsomvanshi@nvidia.com> Tested-by: Rohan Somvanshi <rsomvanshi@nvidia.com>
2012-11-19drivers: net: Auto select MHI_NETDEV based on MHI.Raj Jayaraman
Bug 1054808 Change-Id: I2cc87b0d633052fbcfd7bf02c2575c10e64930ac Signed-off-by: Raj Jayaraman <rjayaraman@nvidia.com> Reviewed-on: http://git-master/r/164439 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-11-15net: usb: raw-ip: increment number of rx buffersVinayak Pane
Increasing number of rx URBs for raw-ip interface. This should optimize the underlying USB interface as more URBs can be used for receiving packets via raw-ip. Change-Id: I2427996ffbafb20e19b733775d576086a7df1ddc Signed-off-by: Vinayak Pane <vpane@nvidia.com> Reviewed-on: http://git-master/r/134867 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Michael Hsu <mhsu@nvidia.com> Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-11-12drivers: net: usb: Add MHI support for RMC PegaPCI.Raj Jayaraman
* As submitted by RMC for modem support * Bug 1054808 Change-Id: I2088b17af7ecf66f4dc95a889ab3ae3466dadd96 Signed-off-by: Raj Jayaraman <rjayaraman@nvidia.com> Reviewed-on: http://git-master/r/160034 (cherry picked from commit eefa1719500f976898cb0c9f3832063d21c9bd81) Reviewed-on: http://git-master/r/162294 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: WK Tsai <wtsai@nvidia.com> Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-11-12drivers: net: Modifications for RMC PegaPCI.Raj Jayaraman
* As submitted by RMC for modem support * Bug 1054808 Change-Id: Ia25f0d6aaea899cb327cb2141d6896a508238c0c Signed-off-by: Raj Jayaraman <rjayaraman@nvidia.com> Reviewed-on: http://git-master/r/160032 (cherry picked from commit a81627cafe577dc5f640feb11596d485200c4c0d) Reviewed-on: http://git-master/r/162292 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: WK Tsai <wtsai@nvidia.com> Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-11-12arm: tegra: ncm: Add Icera mobile 5AN PID/VID identification for NCMJonathan Roux
Bug 1054494 Change-Id: I86c9a68532a3ef789ed2df6c122dc29377b7acd1 Signed-off-by: Jonathan Roux <jroux@nvidia.com> Reviewed-on: http://git-master/r/146948 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Neil Patel <neilp@nvidia.com> Reviewed-by: Steve Lin <stlin@nvidia.com>
2012-10-29net: usb: smsc: Enable VOH mode for SMSC ethernet complianceVishal Singh
Adding config option that enables the VOH mode which is required for SMSC compliance. Bug 923110. Bug 1045637. Reviewed-on: http://git-master/r/73477 Reviewed-on: http://git-master/r/141562 (cherry picked from commit 4ab7f0342d1e17c4b19a69dc34e7cb6fd6332433) Change-Id: Ifb1660272b36719abf6edd449193ceffea227511 Signed-off-by: Vishal Singh <vissingh@nvidia.com> Reviewed-on: http://git-master/r/144089 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Sachin Nikam <snikam@nvidia.com>