diff options
author | Faisal Mehmood <f.m3hm00d@gmail.com> | 2018-08-18 18:49:54 +0200 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2018-10-02 09:43:51 +0200 |
commit | 6af19fd10595936abb02c9199cd9ea1ff0411490 (patch) | |
tree | b9f3c4bd332209da6c1fd947de0875896172ed2c /drivers/usb | |
parent | usb: gadget: atmel: remove pointless retrieval of DT name property (diff) | |
download | linux-6af19fd10595936abb02c9199cd9ea1ff0411490.tar.xz linux-6af19fd10595936abb02c9199cd9ea1ff0411490.zip |
usb: dwc3: Fix spelling of 'optimizations'
'optimizations' was misspelled as 'optmizations'. Fixed it. It is a
coding style change which should have no impact on runtime execution of code.
Signed-off-by: Faisal Mehmood <f.m3hm00d@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/dwc3/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 88c80fcc39f5..becfbb87f791 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -756,7 +756,7 @@ static void dwc3_core_setup_global_control(struct dwc3 *dwc) /* check if current dwc3 is on simulation board */ if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) { - dev_info(dwc->dev, "Running with FPGA optmizations\n"); + dev_info(dwc->dev, "Running with FPGA optimizations\n"); dwc->is_fpga = true; } |