All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Cc: gregkh@linuxfoundation.org,
	driverdev-devel@linuxdriverproject.org, wsa@the-dreams.de
Subject: Re: [PATCH 22/23] staging: ks7010: use 'u16' for casts in assignments in hostif_sme_set_rsn
Date: Tue, 15 May 2018 17:03:46 +0300	[thread overview]
Message-ID: <20180515140346.jidjmibjkgkcjr6w@mwanda> (raw)
In-Reply-To: <1526236558-5944-23-git-send-email-sergio.paracuellos@gmail.com>

On Sun, May 13, 2018 at 08:35:57PM +0200, Sergio Paracuellos wrote:
> @@ -1619,7 +1619,7 @@ static void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type)
>  
>  	switch (type) {
>  	case SME_RSN_UCAST_REQUEST:
> -		wpa_suite.size = cpu_to_le16((uint16_t)1);
> +		wpa_suite.size = cpu_to_le16((u16)1);

Lol...

regards,
dan carpenter

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

  reply	other threads:[~2018-05-15 14:03 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-13 18:35 [PATCH 00/23] staging: ks7010: some new cleanups Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 01/23] staging: ks7010: remove not used definition WPA_CAPABILITY_PREAUTH Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 02/23] staging: ks7010: remove no necessary blank line Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 03/23] staging: ks7010: replace unsigned char type with u8 Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 04/23] staging: ks7010: change cast from uint16_t to u16 Sergio Paracuellos
2018-05-15 13:41   ` Dan Carpenter
2018-05-15 17:00     ` Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 05/23] staging: ks7010: change parameter type in ks_wlan_hw_rx function Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 06/23] staging: ks7010: change uint8_t casts to u8 in ks_wlan_set_rate Sergio Paracuellos
2018-05-15 13:51   ` Dan Carpenter
2018-05-13 18:35 ` [PATCH 07/23] staging: ks7010: replace uint8_t with u8 in ks_wlan_set_tx_gain Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 08/23] staging: ks7010: replace uint8_t with u8 in ks_wlan_set_rx_gain Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 09/23] staging: ks7010: replace not standard uint type to unsigned int Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 10/23] staging: ks7010: use u16 as type for casting in hostif_data_indication_wpa Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 11/23] staging: ks7010: change some cast type from uint16_t to u16 in hostif_data_request Sergio Paracuellos
2018-05-15 13:59   ` Dan Carpenter
2018-05-15 17:03     ` Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 12/23] staging: ks7010: change parameter type in hostif_mib_get_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 13/23] staging: ks7010: avoid no needed cast in ks_wlan_cap Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 14/23] staging: ks7010: use u16 as cast type in hostif_start_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 15/23] staging: ks7010: replace casts to use type u16 in init_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 16/23] staging: ks7010: use u16 as type for casting in hostif_ps_adhoc_set_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 17/23] staging: ks7010: replace cast type in assignments in hostif_infrastructure_set_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 18/23] staging: ks7010: replace cast type in assignment in hostif_adhoc_set_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 19/23] staging: ks7010: replace cast types in assignments in hostif_phy_information_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 20/23] staging: ks7010: replace uint* type into the u* ones in hostif_bss_scan_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 21/23] staging: ks7010: change two parameter types in hostif_mic_failure_request Sergio Paracuellos
2018-05-13 18:35 ` [PATCH 22/23] staging: ks7010: use 'u16' for casts in assignments in hostif_sme_set_rsn Sergio Paracuellos
2018-05-15 14:03   ` Dan Carpenter [this message]
2018-05-13 18:35 ` [PATCH 23/23] staging: ks7010: replace cast type in assignment in hostif_sme_set_pmksa Sergio Paracuellos
2018-05-15 14:10   ` Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180515140346.jidjmibjkgkcjr6w@mwanda \
    --to=dan.carpenter@oracle.com \
    --cc=driverdev-devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=sergio.paracuellos@gmail.com \
    --cc=wsa@the-dreams.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.