diff options
| -rw-r--r-- | drivers/acpi/video_detect.c | 10 | ||||
| -rw-r--r-- | drivers/infiniband/ulp/iser/iser_verbs.c | 2 | ||||
| -rw-r--r-- | drivers/net/bonding/bond_alb.c | 2 | ||||
| -rw-r--r-- | drivers/net/wireless/ath/ath5k/base.h | 2 | ||||
| -rw-r--r-- | drivers/scsi/bnx2i/bnx2i_iscsi.c | 2 | ||||
| -rw-r--r-- | drivers/staging/rtl8187se/r8180.h | 2 | ||||
| -rw-r--r-- | drivers/video/fb_defio.c | 2 | ||||
| -rw-r--r-- | lib/idr.c | 4 | ||||
| -rw-r--r-- | net/bluetooth/bnep/core.c | 4 | ||||
| -rw-r--r-- | net/sctp/sm_statefuns.c | 2 |
10 files changed, 16 insertions, 16 deletions
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index 575593a8b4e6..27c77729c7ca 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * video_detect.c: | 7 | * video_detect.c: |
| 8 | * Provides acpi_is_video_device() for early scanning of ACPI devices in scan.c | 8 | * Provides acpi_is_video_device() for early scanning of ACPI devices in scan.c |
| 9 | * There a Linux specific (Spec does not provide a HID for video devices) is | 9 | * There a Linux specific (Spec does not provide a HID for video devices) is |
| 10 | * assinged | 10 | * assigned |
| 11 | * | 11 | * |
| 12 | * After PCI devices are glued with ACPI devices | 12 | * After PCI devices are glued with ACPI devices |
| 13 | * acpi_get_pci_dev() can be called to identify ACPI graphics | 13 | * acpi_get_pci_dev() can be called to identify ACPI graphics |
| @@ -83,16 +83,16 @@ long acpi_is_video_device(struct acpi_device *device) | |||
| 83 | if (!device) | 83 | if (!device) |
| 84 | return 0; | 84 | return 0; |
| 85 | 85 | ||
| 86 | /* Does this device able to support video switching ? */ | 86 | /* Is this device able to support video switching ? */ |
| 87 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) || | 87 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) || |
| 88 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy))) | 88 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy))) |
| 89 | video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING; | 89 | video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING; |
| 90 | 90 | ||
| 91 | /* Does this device able to retrieve a video ROM ? */ | 91 | /* Is this device able to retrieve a video ROM ? */ |
| 92 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_ROM", &h_dummy))) | 92 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_ROM", &h_dummy))) |
| 93 | video_caps |= ACPI_VIDEO_ROM_AVAILABLE; | 93 | video_caps |= ACPI_VIDEO_ROM_AVAILABLE; |
| 94 | 94 | ||
| 95 | /* Does this device able to configure which video head to be POSTed ? */ | 95 | /* Is this device able to configure which video head to be POSTed ? */ |
| 96 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_VPO", &h_dummy)) && | 96 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_VPO", &h_dummy)) && |
| 97 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_GPD", &h_dummy)) && | 97 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_GPD", &h_dummy)) && |
| 98 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_SPD", &h_dummy))) | 98 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_SPD", &h_dummy))) |
| @@ -137,7 +137,7 @@ find_video(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
| 137 | * | 137 | * |
| 138 | * if NULL is passed as argument all ACPI devices are enumerated and | 138 | * if NULL is passed as argument all ACPI devices are enumerated and |
| 139 | * all graphics capabilities of physically present devices are | 139 | * all graphics capabilities of physically present devices are |
| 140 | * summerized and returned. This is cached and done only once. | 140 | * summarized and returned. This is cached and done only once. |
| 141 | */ | 141 | */ |
| 142 | long acpi_video_get_capabilities(acpi_handle graphics_handle) | 142 | long acpi_video_get_capabilities(acpi_handle graphics_handle) |
| 143 | { | 143 | { |
diff --git a/drivers/infiniband/ulp/iser/iser_verbs.c b/drivers/infiniband/ulp/iser/iser_verbs.c index ea9e1556e0d6..8579f32ce38e 100644 --- a/drivers/infiniband/ulp/iser/iser_verbs.c +++ b/drivers/infiniband/ulp/iser/iser_verbs.c | |||
| @@ -499,7 +499,7 @@ void iser_conn_init(struct iser_conn *ib_conn) | |||
| 499 | 499 | ||
| 500 | /** | 500 | /** |
| 501 | * starts the process of connecting to the target | 501 | * starts the process of connecting to the target |
| 502 | * sleeps untill the connection is established or rejected | 502 | * sleeps until the connection is established or rejected |
| 503 | */ | 503 | */ |
| 504 | int iser_connect(struct iser_conn *ib_conn, | 504 | int iser_connect(struct iser_conn *ib_conn, |
| 505 | struct sockaddr_in *src_addr, | 505 | struct sockaddr_in *src_addr, |
diff --git a/drivers/net/bonding/bond_alb.c b/drivers/net/bonding/bond_alb.c index 9b5936f072dc..a1e7eb92bbf1 100644 --- a/drivers/net/bonding/bond_alb.c +++ b/drivers/net/bonding/bond_alb.c | |||
| @@ -559,7 +559,7 @@ static void rlb_update_rx_clients(struct bonding *bond) | |||
| 559 | } | 559 | } |
| 560 | } | 560 | } |
| 561 | 561 | ||
| 562 | /* do not update the entries again untill this counter is zero so that | 562 | /* do not update the entries again until this counter is zero so that |
| 563 | * not to confuse the clients. | 563 | * not to confuse the clients. |
| 564 | */ | 564 | */ |
| 565 | bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY; | 565 | bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY; |
diff --git a/drivers/net/wireless/ath/ath5k/base.h b/drivers/net/wireless/ath/ath5k/base.h index a28c42f32c9d..c79a65044b67 100644 --- a/drivers/net/wireless/ath/ath5k/base.h +++ b/drivers/net/wireless/ath/ath5k/base.h | |||
| @@ -193,7 +193,7 @@ struct ath5k_softc { | |||
| 193 | struct ath5k_txq *cabq; /* content after beacon */ | 193 | struct ath5k_txq *cabq; /* content after beacon */ |
| 194 | 194 | ||
| 195 | int power_level; /* Requested tx power in dbm */ | 195 | int power_level; /* Requested tx power in dbm */ |
| 196 | bool assoc; /* assocate state */ | 196 | bool assoc; /* associate state */ |
| 197 | bool enable_beacon; /* true if beacons are on */ | 197 | bool enable_beacon; /* true if beacons are on */ |
| 198 | }; | 198 | }; |
| 199 | 199 | ||
diff --git a/drivers/scsi/bnx2i/bnx2i_iscsi.c b/drivers/scsi/bnx2i/bnx2i_iscsi.c index cafb888c2376..10110be7c0ff 100644 --- a/drivers/scsi/bnx2i/bnx2i_iscsi.c +++ b/drivers/scsi/bnx2i/bnx2i_iscsi.c | |||
| @@ -1883,7 +1883,7 @@ static void bnx2i_ep_disconnect(struct iscsi_endpoint *ep) | |||
| 1883 | 1883 | ||
| 1884 | bnx2i_ep = ep->dd_data; | 1884 | bnx2i_ep = ep->dd_data; |
| 1885 | 1885 | ||
| 1886 | /* driver should not attempt connection cleanup untill TCP_CONNECT | 1886 | /* driver should not attempt connection cleanup until TCP_CONNECT |
| 1887 | * completes either successfully or fails. Timeout is 9-secs, so | 1887 | * completes either successfully or fails. Timeout is 9-secs, so |
| 1888 | * wait for it to complete | 1888 | * wait for it to complete |
| 1889 | */ | 1889 | */ |
diff --git a/drivers/staging/rtl8187se/r8180.h b/drivers/staging/rtl8187se/r8180.h index 8216d7e96d60..35ed60be891a 100644 --- a/drivers/staging/rtl8187se/r8180.h +++ b/drivers/staging/rtl8187se/r8180.h | |||
| @@ -521,7 +521,7 @@ typedef struct r8180_priv | |||
| 521 | //u32 NumTxOkInPeriod; //YJ,del,080828 | 521 | //u32 NumTxOkInPeriod; //YJ,del,080828 |
| 522 | u8 TxPollingTimes; | 522 | u8 TxPollingTimes; |
| 523 | 523 | ||
| 524 | bool bApBufOurFrame;// TRUE if AP buffer our unicast data , we will keep eAwake untill receive data or timeout. | 524 | bool bApBufOurFrame;// TRUE if AP buffer our unicast data , we will keep eAwake until receive data or timeout. |
| 525 | u8 WaitBufDataBcnCount; | 525 | u8 WaitBufDataBcnCount; |
| 526 | u8 WaitBufDataTimeOut; | 526 | u8 WaitBufDataTimeOut; |
| 527 | 527 | ||
diff --git a/drivers/video/fb_defio.c b/drivers/video/fb_defio.c index c27ab1ed9604..e59c08320886 100644 --- a/drivers/video/fb_defio.c +++ b/drivers/video/fb_defio.c | |||
| @@ -71,7 +71,7 @@ int fb_deferred_io_fsync(struct file *file, struct dentry *dentry, int datasync) | |||
| 71 | { | 71 | { |
| 72 | struct fb_info *info = file->private_data; | 72 | struct fb_info *info = file->private_data; |
| 73 | 73 | ||
| 74 | /* Skip if deferred io is complied-in but disabled on this fbdev */ | 74 | /* Skip if deferred io is compiled-in but disabled on this fbdev */ |
| 75 | if (!info->fbdefio) | 75 | if (!info->fbdefio) |
| 76 | return 0; | 76 | return 0; |
| 77 | 77 | ||
| @@ -281,7 +281,7 @@ static int idr_get_new_above_int(struct idr *idp, void *ptr, int starting_id) | |||
| 281 | /** | 281 | /** |
| 282 | * idr_get_new_above - allocate new idr entry above or equal to a start id | 282 | * idr_get_new_above - allocate new idr entry above or equal to a start id |
| 283 | * @idp: idr handle | 283 | * @idp: idr handle |
| 284 | * @ptr: pointer you want associated with the ide | 284 | * @ptr: pointer you want associated with the id |
| 285 | * @start_id: id to start search at | 285 | * @start_id: id to start search at |
| 286 | * @id: pointer to the allocated handle | 286 | * @id: pointer to the allocated handle |
| 287 | * | 287 | * |
| @@ -313,7 +313,7 @@ EXPORT_SYMBOL(idr_get_new_above); | |||
| 313 | /** | 313 | /** |
| 314 | * idr_get_new - allocate new idr entry | 314 | * idr_get_new - allocate new idr entry |
| 315 | * @idp: idr handle | 315 | * @idp: idr handle |
| 316 | * @ptr: pointer you want associated with the ide | 316 | * @ptr: pointer you want associated with the id |
| 317 | * @id: pointer to the allocated handle | 317 | * @id: pointer to the allocated handle |
| 318 | * | 318 | * |
| 319 | * This is the allocate id function. It should be called with any | 319 | * This is the allocate id function. It should be called with any |
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c index cafe9f54d841..9ac0497decb8 100644 --- a/net/bluetooth/bnep/core.c +++ b/net/bluetooth/bnep/core.c | |||
| @@ -78,7 +78,7 @@ static struct bnep_session *__bnep_get_session(u8 *dst) | |||
| 78 | static void __bnep_link_session(struct bnep_session *s) | 78 | static void __bnep_link_session(struct bnep_session *s) |
| 79 | { | 79 | { |
| 80 | /* It's safe to call __module_get() here because sessions are added | 80 | /* It's safe to call __module_get() here because sessions are added |
| 81 | by the socket layer which has to hold the refference to this module. | 81 | by the socket layer which has to hold the reference to this module. |
| 82 | */ | 82 | */ |
| 83 | __module_get(THIS_MODULE); | 83 | __module_get(THIS_MODULE); |
| 84 | list_add(&s->list, &bnep_session_list); | 84 | list_add(&s->list, &bnep_session_list); |
| @@ -629,7 +629,7 @@ int bnep_del_connection(struct bnep_conndel_req *req) | |||
| 629 | s = __bnep_get_session(req->dst); | 629 | s = __bnep_get_session(req->dst); |
| 630 | if (s) { | 630 | if (s) { |
| 631 | /* Wakeup user-space which is polling for socket errors. | 631 | /* Wakeup user-space which is polling for socket errors. |
| 632 | * This is temporary hack untill we have shutdown in L2CAP */ | 632 | * This is temporary hack until we have shutdown in L2CAP */ |
| 633 | s->sock->sk->sk_err = EUNATCH; | 633 | s->sock->sk->sk_err = EUNATCH; |
| 634 | 634 | ||
| 635 | /* Kill session thread */ | 635 | /* Kill session thread */ |
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index c8fae1983dd1..ba2f66d5f0cd 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c | |||
| @@ -3569,7 +3569,7 @@ sctp_disposition_t sctp_sf_do_asconf(const struct sctp_endpoint *ep, | |||
| 3569 | * To do this properly, we'll set the destination address of the chunk | 3569 | * To do this properly, we'll set the destination address of the chunk |
| 3570 | * and at the transmit time, will try look up the transport to use. | 3570 | * and at the transmit time, will try look up the transport to use. |
| 3571 | * Since ASCONFs may be bundled, the correct transport may not be | 3571 | * Since ASCONFs may be bundled, the correct transport may not be |
| 3572 | * created untill we process the entire packet, thus this workaround. | 3572 | * created until we process the entire packet, thus this workaround. |
| 3573 | */ | 3573 | */ |
| 3574 | asconf_ack->dest = chunk->source; | 3574 | asconf_ack->dest = chunk->source; |
| 3575 | sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack)); | 3575 | sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack)); |
