Staging: merge 2.6.39-rc3 into staging-next
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 13 Apr 2011 19:14:05 +0000 (12:14 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 13 Apr 2011 19:14:05 +0000 (12:14 -0700)
This was done to handle a number of conflicts, the majority of which
were caused by the big "fix spelling issues" patch.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
27 files changed:
1  2 
drivers/staging/ath6kl/htc2/AR6000/ar6k_gmbox_hciuart.c
drivers/staging/ath6kl/include/common/dbglog.h
drivers/staging/ath6kl/include/common/epping_test.h
drivers/staging/ath6kl/include/common/wmi.h
drivers/staging/ath6kl/include/common/wmix.h
drivers/staging/ath6kl/os/linux/ar6000_drv.c
drivers/staging/ath6kl/wmi/wmi.c
drivers/staging/brcm80211/brcmfmac/dhd_sdio.c
drivers/staging/brcm80211/brcmsmac/wl_mac80211.c
drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c
drivers/staging/brcm80211/brcmsmac/wlc_bmac.c
drivers/staging/brcm80211/brcmsmac/wlc_main.c
drivers/staging/brcm80211/util/bcmsrom.c
drivers/staging/brcm80211/util/hnddma.c
drivers/staging/brcm80211/util/siutils.c
drivers/staging/gma500/psb_drv.c
drivers/staging/gma500/psb_intel_sdvo.c
drivers/staging/hv/blkvsc_drv.c
drivers/staging/hv/channel.c
drivers/staging/hv/channel_mgmt.c
drivers/staging/hv/connection.c
drivers/staging/hv/hv.c
drivers/staging/hv/hv_mouse.c
drivers/staging/hv/hv_util.c
drivers/staging/hv/netvsc_drv.c
drivers/staging/hv/rndis_filter.c
drivers/staging/hv/vmbus_drv.c

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 3af0a11d67801f944fae6a5963cfaea11547c6cd,2df15683f8fafa674afb653bc23bcaf4ce1be2d4..8038589e2c057e5defd54222f7a24f490770d127
@@@ -78,8 -79,8 +78,8 @@@ static void shutdown_onchannelcallback(
                                icmsghdrp->status = HV_S_OK;
                                execute_shutdown = true;
  
 -                              DPRINT_INFO(VMBUS, "Shutdown request received -"
 -                                          " graceful shutdown initiated");
 +                              pr_info("Shutdown request received -"
-                                           " gracefull shutdown initiated\n");
++                                          " graceful shutdown initiated\n");
                                break;
                        default:
                                icmsghdrp->status = HV_E_FAIL;
index 54a203ba1de5bfe75ca0aebeccdd2d8caba1b373,33973568214fdb44c2547a09f7db2b09970c90e9..258233d0d5deda5a83b9f503b0287de27dda1606
@@@ -214,10 -220,11 +215,11 @@@ static void netvsc_linkstatus_callback(
                                       unsigned int status)
  {
        struct net_device *net = dev_get_drvdata(&device_obj->device);
+       struct net_device_context *ndev_ctx;
  
        if (!net) {
 -              DPRINT_ERR(NETVSC_DRV, "got link status but net device "
 -                              "not initialized yet");
 +              netdev_err(net, "got link status but net device "
 +                              "not initialized yet\n");
                return;
        }
  
index 16787052a11f752b11b3bf55cef1c8bfedf646fd,048376b2b676bb2479417c4e6db7e0034b99e2ab..6305050f9e8d24216d8522f116bc557945e19926
@@@ -578,10 -583,9 +578,10 @@@ static int rndis_filter_set_packet_filt
                msecs_to_jiffies(2000));
        if (request->wait_condition == 0) {
                ret = -1;
 -              DPRINT_ERR(NETVSC, "timeout before we got a set response...");
 +              dev_err(&dev->net_dev->dev->device,
 +                      "timeout before we got a set response...\n");
                /*
-                * We cant deallocate the request since we may still receive a
+                * We can't deallocate the request since we may still receive a
                 * send completion for it.
                 */
                goto Exit;
index 501ab369abbd32baa7d1a8cf378716288490c9f9,79089f85d903a1ca4caa170346b00ac607eacdea..c944450c6f09996e947a57907b2d7cec01581248
@@@ -527,8 -254,10 +527,8 @@@ static int vmbus_on_isr(void
        event = (union hv_synic_event_flags *)page_addr + VMBUS_MESSAGE_SINT;
  
        /* Since we are a child, we only need to check bit 0 */
-       if (test_and_clear_bit(0, (unsigned long *) &event->flags32[0]))
 -      if (sync_test_and_clear_bit(0, (unsigned long *) &event->flags32[0])) {
 -              DPRINT_DBG(VMBUS, "received event %d", event->flags32[0]);
++      if (sync_test_and_clear_bit(0, (unsigned long *) &event->flags32[0]))
                ret |= 0x2;
 -      }
  
        return ret;
  }