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
@@@ -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;
@@@ -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;
        }
  
@@@ -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;
@@@ -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;
  }